|
6 | 6 | "license": "MIT", |
7 | 7 | "type": "module", |
8 | 8 | "engines": { |
9 | | - "node": ">=18" |
| 9 | + "node": ">=20" |
10 | 10 | }, |
11 | 11 | "repository": { |
12 | 12 | "type": "git", |
|
20 | 20 | "lint": "pnpm lint:eslint && pnpm lint:dpdm", |
21 | 21 | "lint:fix": "pnpm lint:eslint --fix && pnpm lint:dpdm", |
22 | 22 | "clean": "rm -rf .turbo dist/", |
23 | | - "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%", |
24 | | - "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts", |
25 | | - "test:single": "NODE_OPTIONS=--experimental-vm-modules pnpm run jest --config jest.config.cjs --testTimeout 100000", |
26 | | - "test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%", |
27 | | - "test:standard:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.test.ts --testTimeout 100000 --maxWorkers=50%", |
28 | | - "test:standard:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%", |
| 23 | + "test": "jest --testPathIgnorePatterns=\\.int\\.test.ts --testPathIgnorePatterns=arcjet --testPathIgnorePatterns=srt --testPathIgnorePatterns=standard --testTimeout 30000 --runInBand", |
| 24 | + "test:watch": "jest --watch --testPathIgnorePatterns=\\.int\\.test.ts", |
| 25 | + "test:single": "pnpm run jest --config jest.config.cjs --testTimeout 100000", |
| 26 | + "test:int": "jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --runInBand", |
| 27 | + "test:standard:unit": "jest --testPathPattern=\\.standard\\.test.ts --testTimeout 100000 --runInBand", |
| 28 | + "test:standard:int": "jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --runInBand", |
29 | 29 | "test:standard": "pnpm test:standard:unit && pnpm test:standard:int", |
30 | 30 | "format": "prettier --config .prettierrc --write \"src\"", |
31 | 31 | "format:check": "prettier --config .prettierrc --check \"src\"" |
|
0 commit comments