diff --git a/test/cli/install/bun-workspaces.test.ts b/test/cli/install/bun-workspaces.test.ts index a249d5e32b..9be8ad1e57 100644 --- a/test/cli/install/bun-workspaces.test.ts +++ b/test/cli/install/bun-workspaces.test.ts @@ -1,8 +1,7 @@ import { file, spawn, write } from "bun"; import { install_test_helpers } from "bun:internal-for-testing"; -import { afterAll, beforeAll, beforeEach, describe, expect, test, afterEach } from "bun:test"; +import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, test } from "bun:test"; import { mkdirSync, rmSync, writeFileSync } from "fs"; -import { readlink } from "fs/promises"; import { cp, exists, mkdir, rm } from "fs/promises"; import { assertManifestsPopulated, diff --git a/test/regression/issue/windows-long-path-crash.test.ts b/test/regression/issue/windows-long-path-crash.test.ts index 71509b65d8..2502467b8a 100644 --- a/test/regression/issue/windows-long-path-crash.test.ts +++ b/test/regression/issue/windows-long-path-crash.test.ts @@ -1,5 +1,5 @@ -import { test, expect, describe } from "bun:test"; -import { existsSync, accessSync, constants } from "node:fs"; +import { describe, expect, test } from "bun:test"; +import { accessSync, constants, existsSync } from "node:fs"; import { platform } from "node:os"; // Test for Windows path length crash bug