Skip to content

Commit

Permalink
fix: update tests script to include TypeScript compilation and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Dec 22, 2024
1 parent 8de1329 commit caddc21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"jest:coverage": "jest --coverage",
"jest:watch": "npm t -- --watch",
"jest:clear": "jest --clearCache",
"pretests": "npm run tsup",
"tests": "run-s lint test:*",
"// tests": "tsc validates the typescript compiles. lint checks for style issues. tsup bundles the code that the integration tests depend on. test:* runs the tests.",
"tests": "run-s tsc lint tsup test:*",
"test": "npm run test:cjs",
"test:cjs": "jest --config jest.config.cjs",
"test:esm": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config jest.config.mjs",
Expand Down

0 comments on commit caddc21

Please sign in to comment.