Skip to content

Commit

Permalink
Remove test script from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Rey committed Nov 19, 2023
1 parent e76fbad commit 7f48ceb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/powered-by.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ jobs:
run: |
cd packages/sc-project-initializer && npm i && ./../../generate_powered-by.sh && cd ../../
- name: Generate Powered-By for 'massa-proto-cli'
run: |
cd packages/massa-proto-cli && npm i && ./../../generate_powered-by.sh && cd ../../
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
8 changes: 6 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
module.exports = {
roots: ['<rootDir>/test/'],
testMatch: ['**/*.spec.ts'],
transform: {
'^.+.(ts|tsx)$': 'ts-jest',
'^.+\\.(ts|tsx)$': 'ts-jest',
},
testPathIgnorePatterns: [
'/node_modules/',
'/packages/.*/dist/',
'/assembly/',
],
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lint:fix": "npm run lint -- --fix",
"fmt:check": "npm run prettier && npm run lint",
"fmt": "npm run prettier:fix && npm run lint:fix",
"test": "jest"
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 7f48ceb

Please sign in to comment.