Skip to content

Commit

Permalink
test: Ensure Hasura wait condition works on both macos/linux
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Aug 27, 2024
1 parent 665fa26 commit 6ce6f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/tests/testcontainers/hasura.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class HasuraGraphQLContainer {

constructor (private readonly container = new GenericContainer('hasura/graphql-engine:latest')) {
container.withExposedPorts(this.PORT)
.withWaitStrategy(Wait.forLogMessage(/.*starting API server.*/))
.withWaitStrategy(Wait.forLogMessage(/.*Starting API server.*/i))
.withLogConsumer(logConsumer)
.withStartupTimeout(120_000);
}
Expand Down

0 comments on commit 6ce6f2a

Please sign in to comment.