* chore: upgrading to v3 for json compression * adding local build step * adding test for compress * auto: generate
13 lines
382 B
TypeScript
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();
|
|
});
|
|
});
|