From 188baaa6402db5101b51dc2d247de6e1ba111cb2 Mon Sep 17 00:00:00 2001 From: anthogez Date: Thu, 15 Oct 2020 15:43:23 +0300 Subject: [PATCH] chore: temporary disable flaky acceptance test --- .../cli-test/cli-test.acceptance.test.ts | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/test/acceptance/cli-test/cli-test.acceptance.test.ts b/test/acceptance/cli-test/cli-test.acceptance.test.ts index b814391c06..32ecbb9e12 100644 --- a/test/acceptance/cli-test/cli-test.acceptance.test.ts +++ b/test/acceptance/cli-test/cli-test.acceptance.test.ts @@ -27,7 +27,7 @@ import { SbtTests } from './cli-test.sbt.spec'; import { YarnTests } from './cli-test.yarn.spec'; import { IacK8sTests } from './cli-test.iac-k8s.spec'; import { YarnWorkspacesTests } from './cli-test.yarn-workspaces.spec'; -import { AllProjectsTests } from './cli-test.all-projects.spec'; +// import { AllProjectsTests } from './cli-test.all-projects.spec'; TODO @boost temporary disable flaky test const languageTests: AcceptanceTests[] = [ CocoapodsTests, @@ -123,17 +123,18 @@ if (!isWindows) { } }); - test(AllProjectsTests.language, async (t) => { - for (const testName of Object.keys(AllProjectsTests.tests)) { - t.test( - testName, - AllProjectsTests.tests[testName]( - { server, versionNumber, cli, plugins }, - { chdirWorkspaces }, - ), - ); - } - }); + // TODO @boost: temporary disabling this flaky test + // test(AllProjectsTests.language, async (t) => { + // for (const testName of Object.keys(AllProjectsTests.tests)) { + // t.test( + // testName, + // AllProjectsTests.tests[testName]( + // { server, versionNumber, cli, plugins }, + // { chdirWorkspaces }, + // ), + // ); + // } + // }); test('Languages', async (t) => { for (const languageTest of languageTests) {