fix: enabling prettier (#16593)

pull/16601/head
Alex Boatwright 2020-01-17 13:41:15 -08:00 committed by GitHub
parent 46884c6d72
commit 6611aae63f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -151,6 +151,7 @@ jobs:
set +e
cd ui
yarn install --frozen-lockfile
yarn prettier
name: "Install Dependencies"
- run: make ui_client
- run:

View File

@ -69,8 +69,12 @@ describe('Variables', () => {
cy.getByTestID('resource-card').should('have.length', 2)
cy.getByTestID('context-delete-menu').first().click({force: true})
cy.getByTestID('context-delete-variable').first().click({force: true})
cy.getByTestID('context-delete-menu')
.first()
.click({force: true})
cy.getByTestID('context-delete-variable')
.first()
.click({force: true})
cy.getByTestID('resource-card').should('have.length', 1)
})