Skip to content

Commit

Permalink
Fix tests not being found when testing lit-ts example on windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwooding committed May 8, 2022
1 parent 3019990 commit c526544
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/buildExamples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:

- name: Test built examples
run: yarn test-ci
env:
# Workaround for https://github.com/facebook/jest/issues/8536
TEMP: ${{ runner.temp }}
lint:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions examples/lit-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"storybook": "start-storybook -p 6005",
"build-storybook": "build-storybook",
"preview-storybook": "http-server storybook-static --port 6005 --silent",
"test": "wait-on tcp:6005 && test-storybook --stories-json --url 'http://localhost:6005' -- --passWithNoTests",
"test-ci": "npm-run-all -p --race test preview-storybook"
"test": "wait-on tcp:6005 && test-storybook --stories-json --url 'http://localhost:6005'",
"test-ci": "run-p --race test preview-storybook"
},
"author": "",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"storybook": "start-storybook --port 6008",
"build-storybook": "build-storybook",
"preview-storybook": "http-server storybook-static --port 6008 --silent",
"test": "wait-on tcp:6008 && test-storybook --url 'http://localhost:6008' --verbose",
"test": "wait-on tcp:6008 && test-storybook --url 'http://localhost:6008'",
"test-ci": "run-p --race test preview-storybook"
},
"author": "",
Expand Down

0 comments on commit c526544

Please sign in to comment.