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
code:
import { it, before, after, beforeEach, afterEach } from 'arrow-mocha/es5'; import mochawait from 'mochawait'; describe('RoomService', () => { describe('joinOrCreateRoom', () => { before((context) => { context.test = []; }); it('should create new room with one player', (context) : void => { context.test.length; }); }); });
will fail with:
TypeError: Cannot set property 'test' of undefined
This happens, cause mochawait hooks mocha lifecycle as well. But it'd be really cool to use those extensions together.
mochawait
The text was updated successfully, but these errors were encountered:
No branches or pull requests
code:
will fail with:
TypeError: Cannot set property 'test' of undefined
This happens, cause
mochawait
hooks mocha lifecycle as well. But it'd be really cool to use those extensions together.The text was updated successfully, but these errors were encountered: