From 2db99edeaf9b8f15b85cd8b1e52c37359171496e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Krzeslak?= Date: Wed, 23 Jul 2025 21:11:12 +0200 Subject: [PATCH] test: move test file into separate subfolder --- tests/{ => converters}/assimp.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/{ => converters}/assimp.test.ts (96%) diff --git a/tests/assimp.test.ts b/tests/converters/assimp.test.ts similarity index 96% rename from tests/assimp.test.ts rename to tests/converters/assimp.test.ts index fea0e9f..d1b28a8 100644 --- a/tests/assimp.test.ts +++ b/tests/converters/assimp.test.ts @@ -1,6 +1,6 @@ import type { ExecFileException } from "node:child_process"; import { expect, test } from "bun:test"; -import { convert, ExecFileFn } from "../src/converters/assimp"; +import { convert, ExecFileFn } from "../../src/converters/assimp.ts"; test("convert resolves when execFile succeeds", async () => { const originalConsoleLog = console.log;