Files
puter/tests/puterJsApiTests/setup.ts
T

7 lines
221 B
TypeScript

// setup.ts - Vitest global setup for Puter API tests (TypeScript)
import { beforeAll } from 'vitest';
beforeAll(async () => {
// Setup global mocks or environment if needed
// Example: globalThis.fetch = ...
});