Skip to content

Commit

Permalink
chore: focus on single test
Browse files Browse the repository at this point in the history
  • Loading branch information
kobyhallx committed Sep 20, 2023
1 parent db5658d commit c381361
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- ./compiler/integration-tests
schedule:
- cron: "0 2 * * *" # Run nightly at 2 AM UTC
push:
branches:
- kh-recursive-e2e

jobs:
wasm-packages-build-test:
Expand Down
4 changes: 2 additions & 2 deletions compiler/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"build": "echo Integration Test build step",
"test": "yarn test:browser",
"test:browser": "web-test-runner",
"test:integration:browser": "web-test-runner test/integration/browser/**/*.test.ts",
"test:integration:browser:watch": "web-test-runner test/integration/browser/**/*.test.ts --watch",
"test:integration:browser": "web-test-runner test/integration/browser/recursion.test.ts",
"test:integration:browser:watch": "web-test-runner test/integration/browser/recursion.test.ts --watch",
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion compiler/integration-tests/web-test-runner.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default {
ts: true,
}),
],
files: ["test/integration/browser/**/*.test.ts"],
files: ["test/integration/browser/recursion.test.ts"],
nodeResolve: { browser: true },
testFramework: {
config: {
Expand Down

0 comments on commit c381361

Please sign in to comment.