mirror of
https://github.com/gotify/server.git
synced 2026-09-06 07:50:35 +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,
|
|
},
|
|
});
|