Skip to content

Commit

Permalink
correctly use describe instead of it
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiller1990 committed Nov 8, 2022
1 parent 4d4bb26 commit 223b35b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -13,7 +13,7 @@ const PROJECTS: {projectName: ProjectDirs[number], test: string}[] = [
]

// These are especially flaky on windows, skipping them there.
const describeSkipIfWindows = Cypress.platform === 'win32' ? it.skip : it
const describeSkipIfWindows = Cypress.platform === 'win32' ? describe.skip : it

// TODO: Add these tests to another cy-in-cy framework test to reduce CI cost as these scaffolding is expensive
for (const { projectName, test } of PROJECTS) {
Expand Down

4 comments on commit 223b35b

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 223b35b Nov 8, 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/11.0.0/linux-arm64/marktnoonan/windows-test-updates-223b35b7a9f85cadbf1edbee6d64ef3e8344a539/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 223b35b Nov 8, 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/11.0.0/linux-x64/marktnoonan/windows-test-updates-223b35b7a9f85cadbf1edbee6d64ef3e8344a539/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 223b35b Nov 8, 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/11.0.0/darwin-x64/marktnoonan/windows-test-updates-223b35b7a9f85cadbf1edbee6d64ef3e8344a539/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 223b35b Nov 8, 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/11.0.0/win32-x64/marktnoonan/windows-test-updates-223b35b7a9f85cadbf1edbee6d64ef3e8344a539/cypress.tgz

Please sign in to comment.