Last active
December 9, 2017 18:14
-
-
Save feus4177/07fa48a97c7f765d768d30b310df51e9 to your computer and use it in GitHub Desktop.
Mocha fails to generate dynamic tests asynchronously
This file contains hidden or 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
setTimeout(function () { | |
describe('dynamic suite', function () { | |
it('should run', function () { | |
console.log('it also ran'); | |
}); | |
}); | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment