fix: enabling prettier (#16593)
parent
46884c6d72
commit
6611aae63f
|
|
@ -151,6 +151,7 @@ jobs:
|
|||
set +e
|
||||
cd ui
|
||||
yarn install --frozen-lockfile
|
||||
yarn prettier
|
||||
name: "Install Dependencies"
|
||||
- run: make ui_client
|
||||
- run:
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue