-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest.config.ts
66 lines (60 loc) · 1.76 KB
/
vitest.config.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* eslint-disable @typescript-eslint/no-unsafe-argument */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import { existsSync, readdirSync, readFileSync } from 'node:fs';
import { join } from 'node:path';
import { defineConfig } from 'vitest/config';
const aliases: Record<string, string> = {};
const packagesDir = new URL('./packages', import.meta.url).pathname;
const dirs = readdirSync(packagesDir)
.filter((it) => it !== 'tests' && !it.startsWith('.'))
.filter((it) => existsSync(join(packagesDir, it, 'package.json')));
for (const pkg of dirs.sort()) {
const pkgJson = join(packagesDir, pkg, 'package.json');
const json = JSON.parse(readFileSync(pkgJson, 'utf-8').toString());
const exports = json.exports;
for (const key of Object.keys(exports).sort()) {
if (key.includes('.json')) {
continue;
}
// trim first './'
const trimmed = key.slice(1);
aliases[`@trpc/${pkg}${trimmed}`] = join(
packagesDir,
pkg,
'src',
key.slice(1),
).replace(/\\/g, '/');
}
}
export default defineConfig({
clearScreen: false,
test: {
environment: 'jsdom',
globals: true,
snapshotFormat: {
printBasicPrototype: true,
},
setupFiles: ['./tests/setupTests.ts'],
coverage: {
provider: 'istanbul',
include: ['**/src/**'],
exclude: [
'**/www/**',
'**/examples/**',
// skip codecov for experimental features
// FIXME: delete me once they're stable
'**/next/src/app-dir/**',
'**/server/src/adapters/next-app-dir/**',
],
},
poolOptions: {
threads: {
useAtomics: !!process.env['CI'],
},
},
},
resolve: {
alias: aliases,
},
});