Skip to content

Commit aae550b

Browse files
committed
feat: Publish initial version
1 parent 86b4bdc commit aae550b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
.DS_Store
2+
.DS_Store
3+
build

tests/fixture.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("test ficture", () => {
1616
});
1717

1818
test("expect both materialize1 and materialize2 to mutate", async () => {
19+
//@ts-ignore
1920
const module = await import("./fixtures/test-cases.ts");
2021
expect(await module.materialize1()).not.toEqual(
2122
await module.materialize1()
@@ -33,6 +34,7 @@ describe("test ficture", () => {
3334
});
3435

3536
test("expect only materialize2 to mutate", async () => {
37+
//@ts-ignore
3638
const module = await import("./fixtures/test-cases.ts");
3739
expect(await module.materialize1()).toEqual(await module.materialize1());
3840
expect(await module.materialize2()).not.toEqual(

0 commit comments

Comments
 (0)