Skip to content
This repository was archived by the owner on Feb 15, 2022. It is now read-only.

Commit 407f2b9

Browse files
committed
Rename test folder
1 parent bba4a1d commit 407f2b9

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"node": ">= 10.14.2"
1414
},
1515
"scripts": {
16-
"lint": "eslint ./src ./test",
16+
"lint": "eslint ./src ./tests",
1717
"pretest": "npm run lint",
18-
"test": "tap test/start.js --coverage --reporter=spec",
19-
"citest": "tap tests/start.js --coverage --reporter=spec --coverage-report=lcov",
18+
"test": "tap tests/start.js --coverage --reporter=spec --coverage-report=html --no-browser",
19+
"citest": "tap tests/start.js --coverage --reporter=spec --coverage-report=lcov --no-browser",
2020
"reset": "node reset"
2121
},
2222
"dependencies": {
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/start.js renamed to tests/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const {
1414

1515
const dirs = ['', 'Paypal', 'utils'];
1616
dirs.forEach((dir) => {
17-
const where = './test/specs/' + dir;
17+
const where = './tests/specs/' + dir;
1818
if (existsSync(where)) {
1919
readdirSync(where).forEach((file) => {
2020
if (extname(file) === '.js') {

0 commit comments

Comments
 (0)