From 4beb4b60f9f04824b734132ac970b5f4f77ffebc Mon Sep 17 00:00:00 2001 From: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Tue, 10 Jun 2025 05:57:56 +0000 Subject: [PATCH] `bun run prettier` --- test/cli/install/bun-workspaces.test.ts | 3 +-- test/regression/issue/windows-long-path-crash.test.ts | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) 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