diff --git a/README.md b/README.md index 874dd289..38881141 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index 9152f9a8..9837dd4f 100644 --- a/package.json +++ b/package.json @@ -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"