From 3fe06a9cbff6ec9a2bfd96a50f2737a776f09f1b Mon Sep 17 00:00:00 2001 From: AtofStryker Date: Mon, 28 Oct 2024 21:32:42 -0400 Subject: [PATCH] update cache key and tests that should not pass [run ci] --- .circleci/cache-version.txt | 2 +- .../e2e/scaffold-component-testing.cy.ts | 26 ------------------- 2 files changed, 1 insertion(+), 27 deletions(-) diff --git a/.circleci/cache-version.txt b/.circleci/cache-version.txt index 628a144cb373..566df802ad66 100644 --- a/.circleci/cache-version.txt +++ b/.circleci/cache-version.txt @@ -1,3 +1,3 @@ # Bump this version to force CI to re-create the cache from scratch. -10-28-24 +10-30-24-wds-3-removal diff --git a/packages/launchpad/cypress/e2e/scaffold-component-testing.cy.ts b/packages/launchpad/cypress/e2e/scaffold-component-testing.cy.ts index 0b502f453f14..03faef0ec58b 100644 --- a/packages/launchpad/cypress/e2e/scaffold-component-testing.cy.ts +++ b/packages/launchpad/cypress/e2e/scaffold-component-testing.cy.ts @@ -24,32 +24,6 @@ const ONE_MINUTE = 1000 * 60 describe('scaffolding component testing', { taskTimeout: ONE_MINUTE, }, () => { - context('vuecli4vue2', () => { - it('scaffolds component testing for Vue CLI 4 w/ Vue 2 project', () => { - startSetupFor('vueclivue2-unconfigured') - - // should detect correctly - cy.get('button').should('be.visible').contains('Vue CLI (Vue 2)(detected)') - cy.get('button').contains('Next step').click() - cy.findByRole('button', { name: 'Continue' }).click() - cy.get('[data-cy="launchpad-Configuration files"]').should('be.visible') - verifyConfigFile(`cypress.config.js`) - }) - }) - - context('vuecli4vue3', () => { - it('scaffolds component testing for Vue CLI 4 w/ Vue 3 project', () => { - startSetupFor('vueclivue3-unconfigured') - - // should detect correctly - cy.get('button').should('be.visible').contains('Vue CLI (Vue 3)(detected)') - cy.get('button').contains('Next step').click() - cy.findByRole('button', { name: 'Continue' }).click() - cy.get('[data-cy="launchpad-Configuration files"]').should('be.visible') - verifyConfigFile(`cypress.config.js`) - }) - }) - context('vuecli5vue3', () => { it('scaffolds component testing for Vue CLI 5 w/ Vue 3 project', () => { startSetupFor('vuecli5vue3-unconfigured')