fix: merge duplicate imports in sdk and test-utils packages (1/4) (#19777)

This commit is contained in:
nityam
2026-02-28 02:43:15 +05:30
committed by GitHub
parent 5e3b1fe945
commit f6533c0250
5 changed files with 9 additions and 10 deletions
+1 -2
View File
@@ -6,13 +6,12 @@
import { expect } from 'vitest';
import { execSync, spawn, type ChildProcess } from 'node:child_process';
import { mkdirSync, writeFileSync, readFileSync } from 'node:fs';
import fs, { mkdirSync, writeFileSync, readFileSync } from 'node:fs';
import { join, dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import { env } from 'node:process';
import { setTimeout as sleep } from 'node:timers/promises';
import { DEFAULT_GEMINI_MODEL, GEMINI_DIR } from '@google/gemini-cli-core';
import fs from 'node:fs';
import * as pty from '@lydell/node-pty';
import stripAnsi from 'strip-ansi';
import * as os from 'node:os';