mirror of
https://github.com/gotify/server.git
synced 2026-05-08 06:22:16 +08:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
import {defineConfig} from 'vitest/config';
|
|
|
|
const timeout = process.env.CI === 'true' ? 60000 : 30000;
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: timeout,
|
|
hookTimeout: timeout,
|
|
},
|
|
});
|