Skip to content

Commit

Permalink
Need to actually run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Brody committed Sep 2, 2024
1 parent 6953062 commit a530556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: set-matrix
run: echo "matrix=$(find . -name '*_test.js' | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
run: echo "matrix=$(find . -name '*_test.ts' | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
working-directory: react/test

run-e2e-tests:
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd react

for browser in chrome firefox ; do
for test_file in test/*_test.js ; do
for test_file in test/*_test.ts ; do
npx testcafe -e $browser $test_file
done
done
Expand Down

0 comments on commit a530556

Please sign in to comment.