Skip to content

Commit

Permalink
chore(build): yarn test defaults to yarn test:hawtio
Browse files Browse the repository at this point in the history
Most of the time, yarn test:hawtio is sufficient for development. The
original testing all script is reserved to yarn test:all for CI.
  • Loading branch information
tadayosi committed Feb 23, 2023
1 parent 3b9c0c4 commit 5b4ef03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
- name: Build
run: yarn build:all
- name: Test
run: yarn test
run: yarn test:all
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"build:camel-model": "yarn workspace @hawtio/camel-model build",
"build:hawtio": "yarn workspace @hawtio/react build",
"build:hawtio:watch": "yarn workspace @hawtio/react build:watch",
"test": "yarn workspaces foreach -v -i -pt run test",
"test": "yarn test:hawtio",
"test:all": "yarn workspaces foreach -v -i -pt run test",
"test:hawtio": "yarn workspace @hawtio/react test",
"lint": "yarn eslint packages/hawtio/src/ packages/hawtio/utils/ app/src/",
"lint:fix": "yarn lint --fix",
Expand Down

0 comments on commit 5b4ef03

Please sign in to comment.