Skip to content

Instantly share code, notes, and snippets.

@feus4177
Last active December 9, 2017 18:14
Show Gist options
  • Save feus4177/07fa48a97c7f765d768d30b310df51e9 to your computer and use it in GitHub Desktop.
Save feus4177/07fa48a97c7f765d768d30b310df51e9 to your computer and use it in GitHub Desktop.
Mocha fails to generate dynamic tests asynchronously
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