Skip to content

Commit

Permalink
chore: lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Apr 8, 2024
1 parent 69060aa commit bb0e301
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ When('I click to show description', () => {

cy.wait('@toggleDescription')
.its('response.statusCode')
.sho.should('be.oneOf', [RESP_CODE_200, RESP_CODE_201])
.should('be.oneOf', [RESP_CODE_200, RESP_CODE_201])
})

When('I click to hide the description', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ beforeEach(() => {
'content-type': 'application/json',
},
body: '1',
}).then((response) => expect(response.status).to.be.oneOf([RESP_CODE_201, RESP_CODE_200])
}).then((response) => expect(response.status).to.be.oneOf([RESP_CODE_201, RESP_CODE_200]))
})

When('I toggle show more dashboards', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ before(() => {
'content-type': 'application/json',
},
body: 'false',
}).then((response) => expect(response.status).to.be.oneOf([RESP_CODE_201, RESP_CODE_200])
}).then((response) => expect(response.status).to.be.oneOf([RESP_CODE_201, RESP_CODE_200]))
})

When('clicking to show description fails', () => {
Expand Down

0 comments on commit bb0e301

Please sign in to comment.