Skip to content

Commit

Permalink
test: Fixing system test with missing setup (#22767)
Browse files Browse the repository at this point in the history
* test: Fixing test with missing setup

* Blank commit for percy
  • Loading branch information
tbiethman committed Jul 13, 2022
1 parent c894206 commit 782dfb7
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions system-tests/test/e2e_with_mount_import_spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import systemTests from '../lib/system-tests'

// see: https://github.com/cypress-io/cypress/issues/22589
systemTests.it('should not run CT side effects in e2e with mount registration', {
project: 'component-tests',
spec: 'passing-with-mount.cy.js',
browser: 'chrome',
configFile: 'cypress-e2e-mount-import.config.js',
expectedExitCode: 0,
describe('e2e tests with mount import', () => {
systemTests.setup()

// see: https://github.com/cypress-io/cypress/issues/22589
systemTests.it('should not run CT side effects in e2e with mount registration', {
project: 'component-tests',
spec: 'passing-with-mount.cy.js',
browser: 'chrome',
configFile: 'cypress-e2e-mount-import.config.js',
expectedExitCode: 0,
})
})

5 comments on commit 782dfb7

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 782dfb7 Jul 13, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.1/linux-x64/develop-782dfb7a90bb05e377b968fd6d3e3ca98f16bce6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 782dfb7 Jul 13, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.1/linux-arm64/develop-782dfb7a90bb05e377b968fd6d3e3ca98f16bce6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 782dfb7 Jul 13, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.1/darwin-arm64/develop-782dfb7a90bb05e377b968fd6d3e3ca98f16bce6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 782dfb7 Jul 13, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.1/darwin-x64/develop-782dfb7a90bb05e377b968fd6d3e3ca98f16bce6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 782dfb7 Jul 13, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.1/win32-x64/develop-782dfb7a90bb05e377b968fd6d3e3ca98f16bce6/cypress.tgz

Please sign in to comment.