From e7dbc607a598c5270507d0ce7d55a3c98dcb0c0c Mon Sep 17 00:00:00 2001 From: cornmander Date: Sat, 16 Aug 2025 21:26:12 -0400 Subject: [PATCH] Fix missing import in ide integration tests. (#6407) --- integration-tests/ide-client.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-tests/ide-client.test.ts b/integration-tests/ide-client.test.ts index 186320b3..10f8a7eb 100644 --- a/integration-tests/ide-client.test.ts +++ b/integration-tests/ide-client.test.ts @@ -4,6 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { describe, it, expect, beforeEach, afterEach } from 'vitest'; import * as fs from 'node:fs'; import * as os from 'node:os'; import * as path from 'node:path';