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
This commit is contained in:
Daan Verstraten
2025-06-02 21:17:32 +02:00
committed by GitHub
parent ca6239c35c
commit b957fc93e8
34 changed files with 302 additions and 311 deletions

View File

@@ -0,0 +1,12 @@
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();
});
});