Files
minecraft-bedrock-json-schemas/test/src/compress-specification.test.ts
Daan Verstraten b957fc93e8 chore: upgrading to v3 for json compression (#351)
* chore: upgrading to v3 for json compression

* adding local build step

* adding test for compress

* auto: generate
2025-06-02 21:17:32 +02:00

13 lines
382 B
TypeScript

import { statSync } from "node:fs";
import * as specification from "../../source/compress_specification.json";
import * as path from "path";
describe("Compress Specification", function () {
const files = specification.Files;
test.each(files)("$Source", ({ Source }) => {
const p = path.join(".", "source", Source);
expect(statSync(p).isFile()).toBeTruthy();
});
});