Skip to content

Commit 1cbde58

Browse files
committed
docs: Correct escape characters in registry editor instructions
1 parent 53aeaf8 commit 1cbde58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/nvda.spec.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { nvda, WindowsKeyCodes, WindowsModifiers } from "@guidepup/guidepup";
55

66
// Pre-requisites:
77
// - Run `REG ADD HKCU\Software\Guidepup\Nvda`
8-
// - Run `REG ADD HKCU\Software\Guidepup\Nvda /v guidepup_nvda_0.1.1-2021.3.1 /t REG_SZ /d '"C:\Program Files (x86)\NVDA\"'`
8+
// - Run `REG ADD HKCU\Software\Guidepup\Nvda /v guidepup_nvda_0.1.1-2021.3.1 /t REG_SZ /d "C:\Program Files (x86)\NVDA\\"`
99
// (version is from https://github.com/guidepup/setup/blob/82179ec8915680344d0db320422dd18e29593eb9/package.json#L60C27-L60C41)
1010

1111
if (process.platform === "win32") {
@@ -15,7 +15,7 @@ if (process.platform === "win32") {
1515
});
1616

1717
test.beforeEach(async ({ page }) => {
18-
// Navigate to suggested text example page
18+
// Navigate to suggested test example page
1919
await page.goto("suggested-text/index.html", {
2020
waitUntil: "load",
2121
});
@@ -46,7 +46,7 @@ if (process.platform === "win32") {
4646
});
4747

4848
test.afterAll(async () => {
49-
// Stop VoiceOver
49+
// Stop NVDA
5050
await nvda.stop();
5151
});
5252

0 commit comments

Comments
 (0)