diff --git a/src/test/__snapshots__/cli.test.ts.snap b/test/__snapshots__/cli.test.ts.snap similarity index 100% rename from src/test/__snapshots__/cli.test.ts.snap rename to test/__snapshots__/cli.test.ts.snap diff --git a/src/test/cli.test.ts b/test/cli.test.ts similarity index 85% rename from src/test/cli.test.ts rename to test/cli.test.ts index 630495c..6b3cf8a 100644 --- a/src/test/cli.test.ts +++ b/test/cli.test.ts @@ -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")));