Skip to content

Commit

Permalink
Add remaining test suites to task test command
Browse files Browse the repository at this point in the history
  • Loading branch information
J12934 committed Sep 15, 2024
1 parent 035faad commit acf302e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ tasks:
cmds:
- task: helm:test
- task: juice-balancer:api:test
- task: cleaner:test
- task: progress-watchdog:test

juice-balancer:ui:build:
preconditions:
Expand All @@ -41,6 +43,22 @@ tasks:
- npm run test
dir: juice-balancer/

progress-watchdog:test:
preconditions:
- sh: which go
msg: "go needs to be installed for running the progress-watchdog tests."
cmds:
- go test ./...
dir: progress-watchdog/

cleaner:test:
preconditions:
- sh: test -d node_modules/
msg: "cleaner dependencies are not installed. run 'npm ci' in cleaner/ to install them."
cmds:
- npm run test
dir: cleaner/

helm:test:
preconditions:
- sh: helm version
Expand Down

0 comments on commit acf302e

Please sign in to comment.