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) {