aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/test/compiler_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sol-compiler/test/compiler_test.ts')
-rw-r--r--packages/sol-compiler/test/compiler_test.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/sol-compiler/test/compiler_test.ts b/packages/sol-compiler/test/compiler_test.ts
index 464aa8bb6..5cc7e41ce 100644
--- a/packages/sol-compiler/test/compiler_test.ts
+++ b/packages/sol-compiler/test/compiler_test.ts
@@ -23,6 +23,9 @@ describe('#Compiler', function(): void {
contractsDir,
contracts: constants.contracts,
};
+ it('should create a Compiler with empty opts', async () => {
+ const _compiler = new Compiler();
+ });
it('should create an Exchange artifact with the correct unlinked binary', async () => {
compilerOpts.contracts = ['Exchange'];