-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvitest.s3.config.ts
More file actions
23 lines (21 loc) · 979 Bytes
/
vitest.s3.config.ts
File metadata and controls
23 lines (21 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
name: "s3",
exclude: [
"node_modules/@fireproof/core/tests/react/**",
"node_modules/@fireproof/core/tests/fireproof/config.test.ts",
"node_modules/@fireproof/core/tests/fireproof/utils.test.ts",
"node_modules/@fireproof/core/tests/blockstore/interceptor-gateway.test.ts",
"node_modules/@fireproof/core/tests/gateway/indexeddb/loader-config.test.ts",
"node_modules/@fireproof/core/tests/gateway/file/loader-config.test.ts",
"node_modules/@fireproof/core/tests/blockstore/keyed-crypto-indexeddb-file.test.ts",
"node_modules/@fireproof/core/tests/blockstore/keyed-crypto.test.ts",
],
include: ["src/s3/*test.?(c|m)[jt]s?(x)", "node_modules/@fireproof/core/tests/**/*test.?(c|m)[jt]s?(x)"],
globals: true,
setupFiles: "./setup.s3.ts",
},
});