Skip to content

Commit 7f2aff2

Browse files
Update docs
1 parent bacca1b commit 7f2aff2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/quickstart/global-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function setup() {
1919
url: `redis://${redisContainer.getHost()}:${redisContainer.getMappedPort(6379)}`
2020
});
2121

22-
await redisClient.connect();
22+
await globalThis.redisClient.connect();
2323
}
2424

2525
export async function teardown() {

docs/quickstart/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ If we run the test again, we'll see a lot of debug output:
132132
[INFO] [936d82e9964e] Stopped container
133133
```
134134

135-
These logs are very useful for debugging when a container isn't working as expected. You can see there are logs from the Testcontainers library, as well as logs emitted from all Testcontainers-managed containers.
135+
These logs are useful for debugging when a container isn't working as expected. You can see there are logs from the Testcontainers library, as well as logs emitted from all Testcontainers-managed containers.

0 commit comments

Comments
 (0)