-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.example.ps1
More file actions
15 lines (13 loc) · 648 Bytes
/
Copy pathtest.example.ps1
File metadata and controls
15 lines (13 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Required config
# The path you cloned this repository to
$REPO_PATH = "C:\Users\eps1lon\Development\nvda-snapshot-testing"
# Optional config
# The path where NVDA speech output is logged. Need read/write access.
$LOG_FILE_PATH = "$REPO_PATH\nvda.log"
# The path where your package manager installed the "screen-reader-testing-library" package.
$PACKAGE_PATH = "$REPO_PATH\node_modules\screen-reader-testing-library"
# End of configuration. Changing anything below at your own risk
$NVDA_BIN = "$PACKAGE_PATH\bin\nvda.ps1"
& $NVDA_BIN -logFile $LOG_FILE_PATH
node $REPO_PATH\examples\node\index.js $LOG_FILE_PATH
& $NVDA_BIN -quit