Skip to content

Commit 070ff69

Browse files
committed
Semicolons
1 parent 44424d0 commit 070ff69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/game.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)