Skip to content

Instantly share code, notes, and snippets.

@joerter
Last active December 20, 2019 16:08
Show Gist options
  • Save joerter/145a326adfdd945075c5f7f9e014e53d to your computer and use it in GitHub Desktop.
Save joerter/145a326adfdd945075c5f7f9e014e53d to your computer and use it in GitHub Desktop.
const BowlingGame = require('./bowling-game');
it('should return 0 for a game of all gutter balls', () => {
const game = new BowlingGame();
for (let i = 0; i < 20; i++) {
game.roll(0);
}
expect(game.score).toEqual(0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment