Skip to content
New issue

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

plugin doesn't work with mochawait #3

Open
vaukalak opened this issue Apr 5, 2016 · 0 comments
Open

plugin doesn't work with mochawait #3

vaukalak opened this issue Apr 5, 2016 · 0 comments

Comments

@vaukalak
Copy link

vaukalak commented Apr 5, 2016

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant