Skip to content

Commit

Permalink
test-no-lint -> run-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehesluke committed Mar 11, 2024
1 parent f39a609 commit 7a04eaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ $ npm test
The test run will also include a run of [eslint](https://eslint.org/) and [TypeScript](https://www.typescriptlang.org/). To run the tests without these, use:

```shell
$ npm run test-no-lint
$ npm run run-tests
```

### Contributing
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"lint": "eslint \"src/**/*.js\"",
"lint-fix": "eslint \"src/**/*.js\" --fix",
"pretest": "npm run lint && tsc",
"test": "npm run test-no-lint",
"test-no-lint": "jasmine",
"test": "npm run run-tests",
"run-tests": "jasmine",
"test-debug": "node --inspect-brk -i ./node_modules/jasmine/bin/jasmine.js",
"postpublish": "git push",
"publish-patch": "npm test && git pull && git push && npm version patch && npm publish"
Expand Down

0 comments on commit 7a04eaf

Please sign in to comment.