diff --git a/e2e/jasmine-async/__tests__/concurrent.test.js b/e2e/jasmine-async/__tests__/concurrent.test.js index d3a081499e4a..ef0cc1ba7b10 100644 --- a/e2e/jasmine-async/__tests__/concurrent.test.js +++ b/e2e/jasmine-async/__tests__/concurrent.test.js @@ -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() -);