From 00a95063486f5777d44f885907d0cce15616f3aa Mon Sep 17 00:00:00 2001 From: M4rk9696 Date: Mon, 3 Feb 2020 20:19:12 +0530 Subject: [PATCH] Remove redundant test --- e2e/jasmine-async/__tests__/concurrent.test.js | 16 ---------------- 1 file changed, 16 deletions(-) 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() -);