forked from effect-app/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.test.ts
100 lines (90 loc) · 2.71 KB
/
vite.config.test.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/// <reference types="vitest" />
import fs from "fs"
import path from "path"
import AutoImport from "unplugin-auto-import/vite"
import { defineConfig } from "vite"
import type { UserConfig } from "vite"
import makeConfig from "./vite.config.base"
const pj = require("./package.json")
const basePj = pj.name.replace("/root", "")
export default function defineTestConfig(
dirName?: string,
transform?: (cfg: UserConfig, useDist: boolean, useFullDist: boolean) => UserConfig,
options: { useTransform?: boolean; useFullDist?: boolean; useDist?: boolean } = {
useTransform: false,
useDist: process.env.TEST_USE_DIST === "true",
useFullDist: process.env.TEST_USE_FULL_DIST === "true"
}
) {
let {
useDist = process.env.TEST_USE_DIST === "true",
// eslint-disable-next-line prefer-const
useFullDist = process.env.TEST_USE_FULL_DIST === "true",
// eslint-disable-next-line prefer-const
useTransform = false
} = options
if (useFullDist) {
useDist = true
}
const b = makeConfig(dirName, useDist, useTransform)
// autoimport seems to work best, even if in some cases setting vitest/globals as types works.
const autoImport = AutoImport({
dts: "./test/auto-imports.d.ts",
// include: [
// /\.test\.[tj]sx?$/ // .ts, .tsx, .js, .jsx
// ],
imports: [
"vitest",
{
"@effect-app/infra/vitest": [
"describe",
"it",
"expect",
"beforeAll",
"afterAll",
"beforeEach",
"afterEach",
"layer",
"createRandomInstance",
"createRandomInstanceI",
"assert",
"suite",
"test"
]
}
]
})
const d = dirName ? dirName + "/" : ""
const cfg = {
...b,
// eslint-disable-next-line @typescript-eslint/no-var-requires
plugins: [
...b.plugins ?? [],
...useFullDist
? [autoImport]
: [
...useTransform
? [
require("@effect-app/compiler/vitePlugin2").effectPlugin({
tsconfig: fs.existsSync(d + "tsconfig.test.local.json")
? d + "tsconfig.test.local.json"
: d + "tsconfig.test.json"
})
]
: [],
autoImport
]
],
test: {
...b.test,
include: useFullDist
? ["./test/**/*.test.{js,mjs,cjs,jsx}"]
: ["./test/**/*.test.{ts,mts,cts,tsx}"],
exclude: ["**/node_modules/**"]
},
watchExclude: ["**/node_modules/**"]
// forceRerunTriggers: ['**/package.json/**', '**/vitest.config.*/**', '**/vite.config.*/**', '**/dist/**']
}
// console.log("cfg", cfg)
return defineConfig(transform ? transform(cfg, useDist, useFullDist) : cfg)
}