mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
alias: {
|
|
'@app/gql/graphql': 'testkit/gql/graphql.ts',
|
|
'@app/gql': 'testkit/gql/index.ts',
|
|
},
|
|
setupFiles: ['dotenv/config', '../scripts/serializer.ts'],
|
|
testTimeout: 90_000,
|
|
},
|
|
});
|