File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -161,16 +161,16 @@ describe("Game tests", () => {
161161 try {
162162 const chess = new Chess ( ) ;
163163 let start = chess . turn ( ) === "white" ;
164- chess . move ( { from :"e2" , to : "e4" } )
164+ chess . move ( { from :"e2" , to : "e4" } ) ;
165165 let whiteMoved = chess . turn ( ) === "black" ;
166- chess . move ( { from :"b7" , to : "b5" } )
166+ chess . move ( { from :"b7" , to : "b5" } ) ;
167167 let blackMoved = chess . turn ( ) === "white" ;
168168 chess . undo ( ) ;
169169 let blackUndo = chess . turn ( ) === "black" ;
170170 chess . undo ( ) ;
171171 let whiteUndo = chess . turn ( ) === "white" ;
172172
173- assert ( start && whiteMoved && blackMoved && blackUndo && whiteUndo )
173+ assert ( start && whiteMoved && blackMoved && blackUndo && whiteUndo ) ;
174174 done ( ) ;
175175 } catch ( e ) {
176176 done ( e ) ;
You can’t perform that action at this time.
0 commit comments