Skip to content

Commit 1449750

Browse files
committed
Fix tests in CI
1 parent 1eb4ab9 commit 1449750

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"watch": "tsc --watch",
1010
"build": "tsc -p tsconfig.json",
1111
"dev": "node scripts/dev.js",
12-
"test": "tsc -b spec && node scripts/remap-imports.js && jasmine"
12+
"test": "tsc -b src && node scripts/remap-imports.js && tsc -p spec jasmine"
1313
},
1414
"keywords": [],
1515
"author": "",

scripts/remap-imports.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Script to remap imports from '/filename' to './filename.js'.
66
import fs from 'node:fs/promises';
77
import path from 'node:path';
88

9+
//haha script goes brrrrr
910
(async function main(){
1011
process.chdir(path.join(__dirname, '..'));
1112
await fs.rm('spec/plugin', { recursive: true, force: true });

0 commit comments

Comments
 (0)