Skip to content

Commit 86a84cb

Browse files
committed
several tests fixes
1 parent c98d349 commit 86a84cb

File tree

9 files changed

+1922
-278
lines changed

9 files changed

+1922
-278
lines changed

.github/workflows/js.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@ jobs:
2323
cache: 'npm'
2424
- name: Install npm dependencies
2525
run: npm i --include=dev
26-
- name: Static Tests
27-
run: npm run static-test
26+
- name: Static Tests (TS ESM)
27+
run: npm run ts-test-static
28+
- name: Live Tests (TS ESM)
29+
run: ts-test-live
30+
- name: Static Tests (JS CJS)
31+
run: npm run static-test (JS CJS)
2832
- name: Live Tests
29-
run: npm run test
33+
run: npm run test
34+
- name: CJS test
35+
run: npm run test-cjs

.mocharc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://json.schemastore.org/mocharc.json",
3+
"require": "tsx"
4+
}

jest.config.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)