summaryrefslogtreecommitdiff
path: root/packages/cli/vitest.config.ts
blob: aac3ddb383b7b8999ea2408c0f0de396ad9701e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

/// <reference types="vitest" />
import { defineConfig } from 'vitest/config';

export default defineConfig({
  test: {
    environment: 'jsdom',
    globals: true, // Optional: enables global APIs like describe, it, expect
  },
});