mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
import { qpdfAvailable, sofficeAvailable } from "@snapotter/doc-engine";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("doc-engine binary resolution", () => {
|
|
it("availability checks return booleans without throwing", () => {
|
|
expect(typeof qpdfAvailable()).toBe("boolean");
|
|
expect(typeof sofficeAvailable()).toBe("boolean");
|
|
});
|
|
});
|