Skip to content

Commit 97e99d7

Browse files
authored
Fix environment variable syntax for Windows PowerShell (#36382)
Update docs with the right env var name
1 parent fa9d4d9 commit 97e99d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/Quickstart-on-how-to-write-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ After running the test cases, you need to push your recordings into assets repo.
153153
> pnpm test
154154

155155
# Windows with PowerShell
156-
> $env: TEST MODE="record"
156+
> $env:TEST_MODE="record"
157157
> pnpm test
158158

159159
# Linux / Mac
@@ -182,7 +182,7 @@ If we have existing recordings, then the tests have been run against generated t
182182
> pnpm test
183183

184184
# Windows with PowerShell
185-
> $env: TEST MODE="playback"
185+
> $env:TEST_MODE="playback"
186186
> pnpm test
187187

188188
# Linux / Mac

0 commit comments

Comments
 (0)