fix: Fix running browser tests (#9587)

* fix: Fix running browser tests

* chore: Run lint
This commit is contained in:
Aaron Dodson
2026-02-13 12:33:42 -08:00
committed by GitHub
parent 2ada188f88
commit 10079df705
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@
"start": "npm run build && concurrently -n tsc,server \"tsc --watch --preserveWatchOutput --outDir \"build/src\" --declarationDir \"build/declarations\"\" \"http-server ./ -s -o /tests/playground.html -c-1\"",
"tsc": "gulp tsc",
"test": "gulp test",
"test:browser": "cd tests/browser && npx mocha",
"test:browser": "npx mocha --config tests/browser/.mocharc.js",
"test:generators": "gulp testGenerators",
"test:mocha:interactive": "npm run build && concurrently -n tsc,server \"tsc --watch --preserveWatchOutput --outDir \"build/src\" --declarationDir \"build/declarations\"\" \"gulp interactiveMocha\"",
"test:compile:advanced": "gulp buildAdvancedCompilationTest --debug",

View File

@@ -3,4 +3,5 @@
module.exports = {
ui: 'tdd',
require: __dirname + '/test/hooks.mjs',
spec: 'tests/browser/test/**/*_test.mjs',
};