fix: adapt texttest script

This commit is contained in:
Birame Sene 2024-12-29 12:43:50 +01:00 committed by Peter Kofler
parent 5bf4f639e7
commit 953b312d8e
2 changed files with 2 additions and 1 deletions

1
deno/.gitignore vendored
View File

@ -8,3 +8,4 @@ test/**/*.js
test/**/*.js.map
coverage
.nycrc.js*
venv/

View File

@ -11,4 +11,4 @@ import sys
args = " ".join(sys.argv[1:])
TEXTTEST_HOME = os.environ.get("TEXTTEST_HOME", os.getcwd())
subprocess.run(f"deno run {TEXTTEST_HOME}/TypeScript/test/golden-master-text-test.ts {args}", shell=True)
subprocess.run(f"deno run {TEXTTEST_HOME}/test/golden-master-text-test.ts {args}", shell=True)