ci: collect test coverage on electron (#2335)

This commit is contained in:
himself65
2023-05-11 20:51:13 -05:00
committed by LongYinan
parent ec66b229fe
commit add5deae0f
5 changed files with 58 additions and 8 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
import { execSync } from 'node:child_process';
import { join } from 'node:path';
export default async function () {
execSync('yarn ts-node-esm scripts/', {
cwd: path.join(__dirname, '..'),
cwd: join(__dirname, '..'),
});
}