File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11node_modules
2- .DS_Store
2+ .DS_Store
3+ build
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments