Skip to content

Commit

Permalink
fix: e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Oct 8, 2024
1 parent 25b67a3 commit ad7ab8c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/ui/tests/App_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ Scenario('Add requests', async() => {
})

Scenario('Add GraphQL requests', async() => {
for(let i = 1; i <= 5; i++) {
const requestName = `GraphQL Request ${i}`
I.createGraphQLRequest(requestName)
await I.isActiveSidebarItem(`GQL${requestName}`)
await I.isActiveTab(`POST ${requestName}`)
}
const requestName = `GraphQL Request`
I.createGraphQLRequest(requestName)
await I.isActiveSidebarItem(`GQL${requestName}`)
await I.isActiveTab(`POST ${requestName}`)
})

Scenario('type url with query params', async() => {
Expand Down

0 comments on commit ad7ab8c

Please sign in to comment.