Move generic tests out of src/ dir

This commit is contained in:
Rene Saarsoo 2020-10-02 11:37:48 +03:00
parent 423012024b
commit 1df9f8e1d7
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import * as fs from "fs";
import { generateZwo } from "../generateZwo";
import { parse } from "../parser";
import { stats } from "../stats";
import { generateZwo } from "../src/generateZwo";
import { parse } from "../src/parser";
import { stats } from "../src/stats";
const createStats = (filename: string) => stats(parse(fs.readFileSync(filename, "utf8")));
const createZwo = (filename: string) => generateZwo(parse(fs.readFileSync(filename, "utf8")));