Skip to content

Commit b76c871

Browse files
committed
add static tests [wip]
1 parent d1a49b4 commit b76c871

File tree

4 files changed

+275
-4
lines changed

4 files changed

+275
-4
lines changed

.github/workflows/js.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ jobs:
2323
cache: 'npm'
2424
- name: Install npm dependencies
2525
run: npm i --include=dev
26-
- name: Test
26+
- name: Static Tests
27+
run: npm run static-test
28+
- name: Live Tests
2729
run: npm run test

package-lock.json

+197-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
"string-hash": "^1.1.3",
1414
"url": "^0.11.0",
1515
"ws": "^7.2.0"
16-
},
16+
},
1717
"scripts": {
1818
"test": "mocha ./tests/live-tests.js",
19+
"static-test": "mocha ./tests/static-tests.mjs",
1920
"test-debug": "mocha --inspect-brk",
2021
"lint": "eslint -c .eslintrc.js node-binance-api.js test.js",
2122
"cover": "istanbul cover _mocha --report lcovonly",
@@ -38,7 +39,9 @@
3839
},
3940
"homepage": "https://github.com/jaggedsoft/node-binance-api#readme",
4041
"devDependencies": {
41-
"chai": "^4.2.0",
42+
"@types/chai": "^5.0.1",
43+
"@types/mocha": "^10.0.10",
44+
"chai": "^4.5.0",
4245
"chai-counter": "^1.0.0",
4346
"codacy-coverage": "^2.0.3",
4447
"codecov": "^3.6.1",
@@ -48,6 +51,7 @@
4851
"jsdoc": "^4.0.4",
4952
"mocha": "^11.1.0",
5053
"mocha-lcov-reporter": "^1.3.0",
54+
"nock": "^14.0.1",
5155
"nyc": "^17.1.0"
5256
}
5357
}

0 commit comments

Comments
 (0)