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 ...');
});