mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com>
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
alias: {
|
|
'@app/gql/graphql': new URL('./testkit/gql/graphql.ts', import.meta.url).pathname,
|
|
'@app/gql': new URL('./testkit/gql/index.ts', import.meta.url).pathname,
|
|
},
|
|
setupFiles: ['dotenv/config', '../scripts/serializer.ts'],
|
|
testTimeout: 90_000,
|
|
},
|
|
});
|