Skip to content

Commit

Permalink
remove it.only
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Aug 9, 2024
1 parent 542da0e commit 7e9e505
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/cypress/tests/19-api-v3/03-gateways.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ describe('Gateways', () => {
)
})

it.only('GET /gateways', () => {
it('GET /gateways', () => {
const { gateway } = workingData
cy.callAPI(`ds/api/v3/gateways`, 'GET').then(
({ apiRes: { body, status } }: any) => {
expect(status).to.be.equal(200)
cy.log(JSON.stringify(body, null, 2))

// Look for the specific gateway in the response body
const foundGateway = body.find(
(item: { gatewayId: string, displayName: string }) =>
Expand Down

0 comments on commit 7e9e505

Please sign in to comment.