Skip to content

Commit

Permalink
fix: eth-sdk path to cjs (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xged authored Mar 24, 2022
1 parent f6f146b commit c61df6c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/unit/Greeter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ describe('Greeter', () => {
before(async () => {
greeterFactory = await smock.mock<Greeter__factory>('Greeter');
greeter = await greeterFactory.deploy('Hello, world!');

snapshotId = await evm.snapshot.take();
});

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@utils/*": ["test/utils/*"],
"@e2e/*": ["test/e2e/*"],
"@unit/*": ["test/unit/*"],
"@eth-sdk-types": ["node_modules/.dethcrypto/eth-sdk-client/esm/types"]
"@eth-sdk-types": ["node_modules/.dethcrypto/eth-sdk-client/cjs/types"]
}
},
"include": ["./scripts", "./deploy", "./test"],
Expand Down

0 comments on commit c61df6c

Please sign in to comment.