Skip to content

Commit

Permalink
Try tests with env var
Browse files Browse the repository at this point in the history
  • Loading branch information
jcallison1 committed Sep 27, 2024
1 parent abff584 commit 61a2986
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ jobs:
# python setupEnv.py -s &
# for attempt in {1..20}; do sleep 1; if curl 'http://localhost:5050/api'; then echo ready; break; fi; echo waiting...; done

# - name: Install Node dependencies
# run: |
# cd FrontEndReact
# npm install
- name: Install Node dependencies
run: |
cd FrontEndReact
npm install
# - name: Run Jest tests
# run: |
# cd FrontEndReact
# npm test
- name: Run Jest tests
run: |
cd FrontEndReact
npm test
env:
REACT_APP_API_URL: 'http://127.0.0.1:5050/api'

0 comments on commit 61a2986

Please sign in to comment.