mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
22 lines
492 B
TypeScript
22 lines
492 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const timeoutMinutes = Number(process.env.TB_TIMEOUT_MINUTES || '30');
|
|
const testTimeoutMs = timeoutMinutes * 60 * 1000;
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: testTimeoutMs,
|
|
globalSetup: './globalSetup.ts',
|
|
reporters: ['default'],
|
|
include: ['**/terminal-bench/*.test.ts'],
|
|
retry: 2,
|
|
fileParallelism: false,
|
|
},
|
|
});
|