Skip to content

Commit

Permalink
fix(): updated test file names
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ-Cro committed Feb 10, 2025
1 parent 1abc242 commit 0a4104d
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/e2etest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,18 @@ jobs:
- name: Build
run: npm run build

- name: Test Public API Calls # Split test command into public and private
run: npm run test -- public.test.ts
- name: Test Public Read API Calls
run: npm run test -- public.read.test.ts

- name: Test Private Read API Calls
run: npm run test -- private.read.test.ts

- name: Test Private Write API Calls
run: npm run test -- private.write.test.ts

- name: Test Public WS
run: npm run test -- public.ws.test.ts

- name: Test Private API Calls # Added separate step for private API tests
run: npm run test -- private.test.ts
env:
API_KEY_COM: ${{ secrets.API_KEY_COM }}
API_SECRET_COM: ${{ secrets.API_SECRET_COM }}
Expand Down

0 comments on commit 0a4104d

Please sign in to comment.