From fc6cd3d9b1e5a34428216abc9a404095081e771e Mon Sep 17 00:00:00 2001 From: Alec Maliwanag Date: Sat, 16 Oct 2021 18:52:31 -0700 Subject: [PATCH 1/2] disable squads --- src/index.js | 6 +++--- src/tab-web/__tests__/tabweb.test.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.js b/src/index.js index d0a81e5..9115a11 100644 --- a/src/index.js +++ b/src/index.js @@ -2,7 +2,7 @@ import getBasicLegacyTests from './tab-legacy/basics' import getSearchTests from './tab-legacy/search' import getUserSignupTests from './tab-legacy/userSignup' import initDriver from './utils/driver-mgr' -import getSquadTests from './tab-web/squads' +// import getSquadTests from './tab-web/squads' // config = { selenium: {}, browserstack: {}, build: {}, mailosaur: {} } // see driver-mgr for full shape const init = (config = {}) => { @@ -11,12 +11,12 @@ const init = (config = {}) => { const basicLegacyTests = getBasicLegacyTests(getDriver) const searchTests = getSearchTests(getDriver) const userSignupTests = getUserSignupTests(getDriver) - const squadTests = getSquadTests(getDriver) + // const squadTests = getSquadTests(getDriver) return [ ...userSignupTests, ...basicLegacyTests, ...searchTests, - ...squadTests, + // ...squadTests, ] } export default init diff --git a/src/tab-web/__tests__/tabweb.test.js b/src/tab-web/__tests__/tabweb.test.js index b4b6080..cbb9067 100644 --- a/src/tab-web/__tests__/tabweb.test.js +++ b/src/tab-web/__tests__/tabweb.test.js @@ -22,6 +22,6 @@ describe('Tab: acceptance tests', () => { const tests = [...squadTests] tests.forEach(({ description, test, testTimeout }) => // eslint-disable-next-line jest/expect-expect, jest/valid-title - it(description, test, testTimeout) + it.skip(description, test, testTimeout) ) }) From 691f6d5c05de667209a04256e927202fd6f1a9dc Mon Sep 17 00:00:00 2001 From: Alec Maliwanag Date: Sat, 16 Oct 2021 18:52:44 -0700 Subject: [PATCH 2/2] 2.0.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f01d12a..6c240fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tab-e2e", - "version": "2.0.1", + "version": "2.0.2", "description": "", "main": "build/index.js", "scripts": {