Skip to content

Commit 07df245

Browse files
fix: fix typos in some examples
1 parent 65a8d81 commit 07df245

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const startedPlaywrightContainer = await new PlaywrightContainer(
104104
### Execute test in a playwright container
105105

106106
```typescript
107-
const { output, exitCode } = await startedPlaywrightBuildInReporterContainer.exec(["npx", "playwright", "test"]);
107+
const { output, exitCode } = await startedPlaywrightContainer.exec(["npx", "playwright", "test"]);
108108
```
109109

110110
### Reporter
@@ -131,7 +131,7 @@ const startedPlaywrightContainer = await new PlaywrightContainer(
131131
PLAYWRIGHT_PROJECT_TESTS_TO_RUN_INTO_THE_CONTAINER,
132132
).start();
133133

134-
const { output, exitCode } = await startedPlaywrightBuildInReporterContainer.exec([
134+
const { output, exitCode } = await startedPlaywrightContainer.exec([
135135
"npx",
136136
"playwright",
137137
"test",
@@ -153,7 +153,7 @@ const startedPlaywrightContainer = await new PlaywrightContainer(
153153
PLAYWRIGHT_PROJECT_TESTS_TO_RUN_INTO_THE_CONTAINER,
154154
).start();
155155

156-
const { output, exitCode } = await startedPlaywrightBuildInReporterContainer.exec([
156+
const { output, exitCode } = await startedPlaywrightContainer.exec([
157157
"npx",
158158
"playwright",
159159
"test",

0 commit comments

Comments
 (0)