Skip to content

Commit

Permalink
Remove redundant test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark1626 committed Feb 3, 2020
1 parent 420e565 commit 00a9506
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions e2e/jasmine-async/__tests__/concurrent.test.js
Expand Up @@ -11,19 +11,3 @@ it.concurrent('one', () => Promise.resolve());
it.concurrent.skip('two', () => Promise.resolve());
it.concurrent('three', () => Promise.resolve());
it.concurrent('concurrent test fails', () => Promise.reject());
it.concurrent.each(
[
[1, 2],
[2, 3],
],
'adds one to number',
Promise.resolve()
);
it.concurrent.skip.each(
[
[1, 2],
[2, 3],
],
'should skip this test',
Promise.resolve()
);

0 comments on commit 00a9506

Please sign in to comment.