-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
Copy pathvitest.config.js
29 lines (27 loc) · 885 Bytes
/
vitest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/// <reference types="vitest/config" />
import { defineConfig } from 'vite';
import path from 'node:path';
import { readdirSync } from 'node:fs';
const alias = [
{ find: /^(parse5[^/]*)\/dist\/(.*?)(?:\.js)?$/, replacement: path.resolve('./packages/$1/lib/$2') },
{ find: /^(parse5[^/]*)$/, replacement: path.resolve('./packages/$1/lib/index.ts') },
{ find: /parse5-test-utils\/(.*?)/, replacement: path.resolve('./test/$1') },
];
const packages = readdirSync('./packages');
export default defineConfig({
test: {
include: ['**/*.test.ts'],
workspace: packages.map((name) => ({
test: {
name,
root: `packages/${name}`,
alias,
},
})),
coverage: {
clean: true,
include: ['packages'],
exclude: ['**/dist/**'],
},
},
});