summaryrefslogtreecommitdiff
path: root/scripts/tests/test-setup.ts
blob: d4c4b4655f2e21b50fd26759e45d4c8924c0d10b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

import { vi } from 'vitest';

vi.mock('fs', () => ({
  ...vi.importActual('fs'),
  appendFileSync: vi.fn(),
}));