Skip to content

Instantly share code, notes, and snippets.

@mdang
Last active December 5, 2016 18:26
Show Gist options
  • Save mdang/fbb5fff39cf165c1175475b32e0f0b58 to your computer and use it in GitHub Desktop.
Save mdang/fbb5fff39cf165c1175475b32e0f0b58 to your computer and use it in GitHub Desktop.
Exercise: Mocha, Chai + Tic Tac Toe

Mocha, Chai: Tic Tac Toe

15 min

Think about the Tic Tac Toe project we had. Think through what tests we could write for it now that we know more about testing.

Write out the describe and it blocks, don't worry about including the functions to actually test it.

describe('Tic Tac Toe test suite', function() {
  it('should ...');
  it('should ...');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment