vitest.config.ts 545 B

123456789101112131415
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. import { defineConfig } from 'vitest/config';
  6. export default defineConfig({
  7. test: {
  8. include: ['lib/**/*.test.{ts,mts}'],
  9. testTimeout: 120_000,
  10. hookTimeout: 30_000,
  11. retry: 3,
  12. },
  13. });