From 7a04eafb2240cb85e0ffb62fcef7aae4ec084c92 Mon Sep 17 00:00:00 2001 From: Luke Winship Date: Mon, 11 Mar 2024 16:10:34 +0000 Subject: [PATCH] test-no-lint -> run-tests --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 874dd28..3888114 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 9152f9a..9837dd4 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"