Skip to content

Commit

Permalink
ensure deps are installed - do not skip
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiller1990 committed Apr 7, 2022
1 parent a4defbb commit b487860
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/launchpad/cypress/e2e/scaffold-component-testing.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('scaffolding component testing', {
// 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: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.js`)
})
})
Expand All @@ -42,7 +42,7 @@ describe('scaffolding component testing', {
// 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: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.js`)
})
})
Expand All @@ -54,7 +54,7 @@ describe('scaffolding component testing', {
// 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: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.js`)
})
})
Expand All @@ -66,7 +66,7 @@ describe('scaffolding component testing', {
// should detect correctly
cy.get('button').should('be.visible').contains('Create React App(detected)')
cy.get('button').contains('Next Step').click()
cy.findByRole('button', { name: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.js`)
})
})
Expand All @@ -78,7 +78,7 @@ describe('scaffolding component testing', {
// should detect correctly
cy.get('button').should('be.visible').contains('React.js(detected)')
cy.get('button').contains('Next Step').click()
cy.findByRole('button', { name: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.ts`)
})
})
Expand All @@ -90,7 +90,7 @@ describe('scaffolding component testing', {
// should detect correctly
cy.get('button').should('be.visible').contains('Vue.js 3(detected)')
cy.get('button').contains('Next Step').click()
cy.findByRole('button', { name: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.ts`)
})
})
Expand All @@ -102,7 +102,7 @@ describe('scaffolding component testing', {
// should detect correctly
cy.get('button').should('be.visible').contains('Nuxt.js(detected)')
cy.get('button').contains('Next Step').click()
cy.findByRole('button', { name: 'Skip' }).click()
cy.findByRole('button', { name: 'Continue' }).click()
verifyConfigFile(`cypress.config.js`)
})
})
Expand Down

0 comments on commit b487860

Please sign in to comment.