test: fix import in test

This commit is contained in:
Jörg Krzeslak
2025-07-24 10:43:28 +02:00
parent 2c90454244
commit 301fab5c17

View File

@@ -1,6 +1,7 @@
import type { ExecFileException } from "node:child_process"; import type { ExecFileException } from "node:child_process";
import { expect, test } from "bun:test"; import { expect, test } from "bun:test";
import { convert, ExecFileFn } from "../../src/converters/assimp.ts"; import { convert } from "../../src/converters/assimp.ts";
import { ExecFileFn } from "../../src/converters/types.ts";
test("convert resolves when execFile succeeds", async () => { test("convert resolves when execFile succeeds", async () => {
const originalConsoleLog = console.log; const originalConsoleLog = console.log;