Skip to content

Commit

Permalink
fix: Standardize colors for runs in queued status (#23015)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-plummer committed Jul 29, 2022
1 parent 7f054ae commit 91de9cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/app/src/specs/RunStatusDots.cy.tsx
Expand Up @@ -58,7 +58,7 @@ describe('<RunStatusDots />', () => {
cy.get('.v-popper__popper--shown').contains('spec.cy.ts')
cy.findAllByTestId('run-status-dot-0').should('have.class', 'icon-light-orange-400')
cy.findAllByTestId('run-status-dot-1').should('have.class', 'icon-light-indigo-400')
cy.findAllByTestId('run-status-dot-2').should('have.class', 'icon-light-gray-400')
cy.findAllByTestId('run-status-dot-2').should('have.class', 'icon-light-gray-300')
cy.findAllByTestId('run-status-dot-latest').should('not.have.class', 'animate-spin')
})
})
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/specs/RunStatusDots.vue
Expand Up @@ -157,10 +157,10 @@ const dotClasses = computed(() => {
case 'ERRORED':
case 'TIMEDOUT':
return 'icon-light-orange-400'
case 'UNCLAIMED':
case 'NOTESTS':
return 'icon-light-gray-400'
case 'CANCELLED':
case 'UNCLAIMED':
default:
return 'icon-light-gray-300'
}
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

5 comments on commit 91de9cf

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 91de9cf Jul 29, 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.4.0/linux-x64/develop-91de9cfd6d0d33fac9674f86ffee275ed0412e64/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 91de9cf Jul 29, 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.4.0/linux-arm64/develop-91de9cfd6d0d33fac9674f86ffee275ed0412e64/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 91de9cf Jul 29, 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.4.0/darwin-arm64/develop-91de9cfd6d0d33fac9674f86ffee275ed0412e64/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 91de9cf Jul 29, 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.4.0/darwin-x64/develop-91de9cfd6d0d33fac9674f86ffee275ed0412e64/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 91de9cf Jul 29, 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.4.0/win32-x64/develop-91de9cfd6d0d33fac9674f86ffee275ed0412e64/cypress.tgz

Please sign in to comment.