Path: blob/main/extensions/copilot/chat-lib/vitest.config.ts
13383 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { loadEnv } from 'vite';6import { defineConfig } from 'vitest/config';78export default defineConfig(({ mode }) => ({9test: {10include: ['**/*.spec.ts', '**/*.spec.tsx'],11exclude: [12'**/node_modules/**',13'**/dist/**',14'**/.{idea,git,cache,output,temp}/**'15],16env: loadEnv(mode, process.cwd(), ''),17environment: 'node',18globals: true19}20}));2122