Skip to content

Commit

Permalink
fix: remove waiting strategies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Mar 26, 2024
1 parent 902c95d commit e11f587
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions tests/e2e/src/config/hooks/ContainerHooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,34 +28,6 @@ BeforeAll(async function () {
)
.withStartupTimeout(60_000)
.withWaitStrategy('thor-solo', Wait.forHealthCheck())
.withWaitStrategy(
'sample-react-app',
Wait.forLogMessage('Local: http://localhost:5001'),
)
.withWaitStrategy(
'sample-next-app',
Wait.forLogMessage('Local: http://localhost:5002'),
)
.withWaitStrategy(
'sample-vanilla-app',
Wait.forLogMessage(
'Accepting connections at http://localhost:5003',
),
)
.withWaitStrategy(
'sample-angular-app',
Wait.forLogMessage(
'Accepting connections at http://localhost:5004',
),
)
.withWaitStrategy(
'sample-svelte-app',
Wait.forLogMessage('Local: http://localhost:5005'),
)
.withWaitStrategy(
'sample-vue-app',
Wait.forLogMessage('Local: http://localhost:5006'),
)
.withWaitStrategy('mockserver', Wait.forLogMessage('INFO'))
.up();
} catch (e) {
Expand Down

0 comments on commit e11f587

Please sign in to comment.