mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-06-18 05:19:17 -04:00
* test(integration): s3 repository with rustfs * ci: run integration tests before release * chore: fix linting issue * ci: persist-creds -> false
24 lines
432 B
TypeScript
24 lines
432 B
TypeScript
import path from "node:path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"~": path.resolve(import.meta.dirname, "../.."),
|
|
},
|
|
},
|
|
test: {
|
|
server: {
|
|
deps: {
|
|
inline: ["zod"],
|
|
},
|
|
},
|
|
name: "integration",
|
|
environment: "node",
|
|
include: ["app/test/integration/src/**/*.test.ts"],
|
|
testTimeout: 300_000,
|
|
hookTimeout: 300_000,
|
|
maxConcurrency: 4,
|
|
},
|
|
});
|