test: add tests for dasel, pandoc and vtracer

This commit is contained in:
Jörg Krzeslak 2025-12-08 12:12:50 +01:00 committed by Laertes87
parent ad000f35ba
commit 84d7da0195
4 changed files with 198 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import { afterEach, beforeEach, expect, test } from "bun:test";
import { convert } from "../../src/converters/libreoffice"; // ← adjust
import type { ExecFileFn } from "../../src/converters/types"; // ← adjust
import { convert } from "../../src/converters/libreoffice";
import type { ExecFileFn } from "../../src/converters/types";
function requireDefined<T>(value: T, msg: string): NonNullable<T> {
if (value === undefined || value === null) throw new Error(msg);