From 05653d6d67bce719a1ab9737530c7901cac36a04 Mon Sep 17 00:00:00 2001 From: magic-akari Date: Thu, 16 Nov 2023 21:23:54 +0800 Subject: [PATCH] fix: test config --- crates/biome_fmt/test_node/test-node.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/biome_fmt/test_node/test-node.mjs b/crates/biome_fmt/test_node/test-node.mjs index 8225069..17632cd 100644 --- a/crates/biome_fmt/test_node/test-node.mjs +++ b/crates/biome_fmt/test_node/test-node.mjs @@ -14,7 +14,7 @@ for await (const dirent of await fs.opendir(test_root, { recursive: true })) { continue; } - const input_path = dirent.path; + const input_path = path.join(dirent.path, dirent.name); const ext = path.extname(input_path); switch (ext) {