Skip to content

Commit d9afaec

Browse files
authored
Merge pull request #65 from icholy/fix-new-test
Fix products test
2 parents e058b9d + d064f42 commit d9afaec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/resources-public/products.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ test(target, async t => {
1818
});
1919

2020
t.test(`${target} - check definitions`, async t => {
21-
t.equal(existsSync(`${outdir}/${target}/definitions/KeyValuePair.ts`), true);
21+
t.equal(existsSync(`${outdir}/products/definitions/KeyValuePair.ts`), true);
2222
t.end();
2323
});
2424

2525
t.test(`${target} - compile`, async t => {
26-
await typecheck(`${outdir}/${target}/index.ts`);
27-
t.end();
26+
await typecheck(`${outdir}/products/index.ts`);
27+
t.end();
2828
});
2929

3030
});

0 commit comments

Comments
 (0)