foundersandcoders / fizzbuzz

Using Test Driven Development to solve FizzBuzz - workshop written for week 2 of the Founders & Coders course
MIT License
7 stars 9 forks source link

Mistake in example test #2

Closed mantagen closed 7 years ago

mantagen commented 7 years ago
QUnit.test( "when 1, returns 1", function (assert) {
    assert.equal( fizzbuzz(), 1, "Test passed: returns 1" );
});

Should be fizzbuzz(1)

skibinska commented 7 years ago

Thanks, fixed it in #3.