try to fix tests working per version (#867)

* try to fix tests working per version

* fix nonpartests

* fix
This commit is contained in:
u9g 2021-06-16 17:58:20 -04:00 committed by GitHub
parent 66f17e43eb
commit 5d5d76f35d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,8 @@
},
"scripts": {
"prepare": "npm install require-self && require-self",
"test": "mocha --recursive --reporter spec --exit -i -g \"Test version\"",
"test-non-par": "mocha --recursive --reporter spec --exit -g \"Test version\"",
"test": "mocha --recursive --reporter spec --exit --exclude \"non-par-test.js\"",
"test-non-par": "mocha --recursive --reporter spec --exit \"test/non-par-test.js\"",
"lint": "standard",
"fix": "standard --fix",
"pretest": "npm run lint",