Skip to content

Commit

Permalink
chore: update test commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleythedeveloper committed Nov 28, 2024
1 parent 0de07a3 commit cc261ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build:components": "cd packages/components && yarn run build",
"build:untp-test-suite": "cd packages/untp-test-suite && yarn run build",
"build-clean": "rimraf --glob ./yarn.lock ./node_modules ./packages/*/tsconfig.tsbuildinfo ./packages/*/build ./packages/*/node_modules",
"test": "lerna exec -- yarn jest --passWithNoTests",
"test": "lerna exec -- yarn jest",
"test:coverage": "lerna exec -- yarn jest --coverage && rm -rf coverage && istanbul-merge --out coverage/coverage-final.json packages/*/coverage/coverage-final.json && nyc report --temp-dir=./coverage --reporter=html --reporter=json-summary",
"test:components": "cd packages/components && yarn run test",
"test:services": "cd packages/services && yarn run test",
Expand Down
1 change: 1 addition & 0 deletions packages/untp-playground/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ module.exports = {
},
],
},
passWithNoTests: true, // TODO: remove this after adding tests
};
2 changes: 1 addition & 1 deletion packages/untp-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --passWithNoTests"
"test": "jest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
Expand Down

0 comments on commit cc261ca

Please sign in to comment.