Parametrized test with Mocha example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('Something', function() { | |
var values = ['a', 'b', 'c']; | |
values.forEach(function(val) { | |
it('should do something with ' + val + ' in this test', function() { | |
assert.equal(foo(), val); | |
}); | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment