2
0
mirror of synced 2025-02-24 12:08:10 +00:00
2019-05-14 18:25:46 -04:00

12 lines
268 B
TypeScript

'use strict';
import fs from "fs";
import { resolve } from "path";
import { saveTests, TestCase } from "..";
const testcases: Array<TestCase.Unit> = JSON.parse(fs.readFileSync(resolve(__dirname, "../input/units.json")).toString());
saveTests("units", testcases);