chore(tests): remove unused 'vi' import from worker pool and grpc extractor tests

This commit is contained in:
Gergo Magyar 2026-05-05 08:48:43 +01:00
parent d18df1a45a
commit 4379c1e48a
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
* This is critical for cross-platform CI where vitest runs from src/
* but workers need compiled .js files.
*/
import { describe, it, expect, afterEach, vi } from 'vitest';
import { describe, it, expect, afterEach } from 'vitest';
import { createWorkerPool, WorkerPool } from '../../src/core/ingestion/workers/worker-pool.js';
import { pathToFileURL } from 'node:url';
import path from 'node:path';

View file

@ -1,4 +1,4 @@
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest';
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import * as fs from 'node:fs';
import fsp from 'node:fs/promises';
import * as path from 'node:path';