Skip to content

Commit

Permalink
test: fix spec search in windows (#28130)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschile committed Oct 24, 2023
1 parent 7f01e8d commit 058f3a8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/app/cypress/e2e/specs_list_e2e.cy.ts
@@ -1,5 +1,4 @@
import { getPathForPlatform } from '../../src/paths'
import path from 'path'

describe('App: Spec List (E2E)', () => {
const launchApp = (specFilter?: string) => {
Expand Down Expand Up @@ -289,7 +288,7 @@ describe('App: Spec List (E2E)', () => {

cy.findAllByTestId('spec-list-directory')
.should('have.length', 1)
.and('contain', path.join('cypress', 'e2e', 'a-b_c'))
.and('contain', 'a-b_c')

cy.findByText('No specs matched your search:').should('not.be.visible')
})
Expand All @@ -299,7 +298,7 @@ describe('App: Spec List (E2E)', () => {

cy.findAllByTestId('spec-list-directory')
.should('have.length', 1)
.and('contain', path.join('cypress', 'e2e', 'a-b_c'))
.and('contain', 'a-b_c')

cy.findByText('No specs matched your search:').should('not.be.visible')
})
Expand All @@ -309,7 +308,7 @@ describe('App: Spec List (E2E)', () => {

cy.findAllByTestId('spec-list-directory')
.should('have.length', 1)
.and('contain', path.join('cypress', 'e2e', 'a-b_c'))
.and('contain', 'a-b_c')

cy.findByText('No specs matched your search:').should('not.be.visible')
})
Expand Down

5 comments on commit 058f3a8

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 058f3a8 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.3.3/linux-arm64/develop-058f3a80b033f16bf57f50ee78f63d8b82e75851/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 058f3a8 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.3.3/linux-x64/develop-058f3a80b033f16bf57f50ee78f63d8b82e75851/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 058f3a8 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.3.3/darwin-x64/develop-058f3a80b033f16bf57f50ee78f63d8b82e75851/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 058f3a8 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.3.3/win32-x64/develop-058f3a80b033f16bf57f50ee78f63d8b82e75851/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 058f3a8 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.3.3/darwin-arm64/develop-058f3a80b033f16bf57f50ee78f63d8b82e75851/cypress.tgz

Please sign in to comment.