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
Let’s say I run the following on GNU/Linux.
describe.onWindows('something', () => { beforeAll(() => { /* do some Windows specific stuff */ }) test.each([1, 2, 3])('test %d', () => { /* test stuff */ }) })
Then the tests will be marked as skipped but the contents of beforeAll will still be run and fail, once for each test.
beforeAll
The text was updated successfully, but these errors were encountered:
This is also the case with regular jest tests:
describe.skip('toto', () => { beforeAll(() => { console.log('beforeAll') }) beforeEach(() => { console.log('beforeEach') }) it('test', () => { console.log('test') }) })
The output of this will be:
Closing the issue as this is not related to this package. It has been reported to jest already. Please see: jestjs/jest#8379
Sorry, something went wrong.
No branches or pull requests
Let’s say I run the following on GNU/Linux.
Then the tests will be marked as skipped but the contents of
beforeAll
will still be run and fail, once for each test.The text was updated successfully, but these errors were encountered: