Move generic tests out of src/ dir
This commit is contained in:
parent
423012024b
commit
1df9f8e1d7
|
|
@ -1,7 +1,7 @@
|
||||||
import * as fs from "fs";
|
import * as fs from "fs";
|
||||||
import { generateZwo } from "../generateZwo";
|
import { generateZwo } from "../src/generateZwo";
|
||||||
import { parse } from "../parser";
|
import { parse } from "../src/parser";
|
||||||
import { stats } from "../stats";
|
import { stats } from "../src/stats";
|
||||||
|
|
||||||
const createStats = (filename: string) => stats(parse(fs.readFileSync(filename, "utf8")));
|
const createStats = (filename: string) => stats(parse(fs.readFileSync(filename, "utf8")));
|
||||||
const createZwo = (filename: string) => generateZwo(parse(fs.readFileSync(filename, "utf8")));
|
const createZwo = (filename: string) => generateZwo(parse(fs.readFileSync(filename, "utf8")));
|
||||||
Loading…
Reference in New Issue