We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In mocha it is possible to write this:
beforeAll((done) => { done(); });
Jasmine requires a promise to be returned. Is it possible to rewrite this to the following:
beforeAll(() => { let promise = new Promise((resolve, reject) => { resolve(); }); return promise; });
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! Feel free to submit a pull request, maybe you want to give it a try? : )
Sorry, something went wrong.
No, I'll use manual labor for now
No branches or pull requests
In mocha it is possible to write this:
Jasmine requires a promise to be returned. Is it possible to rewrite this to the following:
The text was updated successfully, but these errors were encountered: