Skip to content

Commit

Permalink
Fix failing tests due to css change
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-shehane committed Feb 6, 2020
1 parent 621ef18 commit 0887302
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/desktop-gui/cypress/integration/specs_list_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,16 +161,16 @@ describe('Specs List', function () {

context('run all specs', function () {
it('displays run all specs button', () => {
cy.contains('.btn', 'Run all specs')
cy.contains('.all-tests', 'Run all specs')
})

it('has play icon', () => {
cy.contains('.btn', 'Run all specs')
cy.contains('.all-tests', 'Run all specs')
.find('i').should('have.class', 'fa-play')
})

it('triggers browser launch on click of button', () => {
cy.contains('.btn', 'Run all specs').click()
cy.contains('.all-tests', 'Run all specs').click()
.then(function () {
const launchArgs = this.ipc.launchBrowser.lastCall.args

Expand All @@ -182,7 +182,7 @@ describe('Specs List', function () {

describe('all specs running in browser', function () {
beforeEach(() => {
cy.contains('.btn', 'Run all specs').as('allSpecs').click()
cy.contains('.all-tests', 'Run all specs').as('allSpecs').click()
})

it('updates spec icon', function () {
Expand Down

1 comment on commit 0887302

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 0887302 Feb 6, 2020

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.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/3.8.4/linux-x64/circle-issue-1096-firefox-support-08873023c551f8fbcb6cfad9a09caf3fe1509037-246855/cypress.zip
npm install https://cdn.cypress.io/beta/npm/3.8.4/circle-issue-1096-firefox-support-08873023c551f8fbcb6cfad9a09caf3fe1509037-246848/cypress.tgz

Please sign in to comment.