Upgrade integration tests to use Vitest (#6021)

This commit is contained in:
Tommaso Sciortino 2025-08-12 15:57:27 -07:00 committed by GitHub
parent 8d6eb8c322
commit 9d023be1d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 511 additions and 620 deletions

View file

@ -0,0 +1,18 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
testTimeout: 300000, // 5 minutes
globalSetup: './globalSetup.ts',
reporters: ['default'],
include: ['**/*.test.ts'],
retry: 2,
fileParallelism: false,
},
});