diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-22 16:32:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 16:32:06 +0800 |
commit | 0515c6acded983bba05320895ea2c2891f37055c (patch) | |
tree | e35dc84b3c785241b82e8bfe4605cd288a467301 /packages/sol-cov/test | |
parent | 5c0bae20701391fffae914c35add9cebe8eaa4e5 (diff) | |
parent | 4012e31115dd0571d742b42a48094f41fd53a460 (diff) | |
download | dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar.gz dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar.bz2 dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar.lz dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar.xz dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.tar.zst dexon-sol-tools-0515c6acded983bba05320895ea2c2891f37055c.zip |
Merge pull request #752 from 0xProject/make-promises-safe-preloader
Use make-promises-safe as a preloader instead of manually importing
Diffstat (limited to 'packages/sol-cov/test')
-rw-r--r-- | packages/sol-cov/test/collect_coverage_entries_test.ts | 1 | ||||
-rw-r--r-- | packages/sol-cov/test/instructions_test.ts | 1 | ||||
-rw-r--r-- | packages/sol-cov/test/sol_compiler_artifact_adapter_test.ts | 1 | ||||
-rw-r--r-- | packages/sol-cov/test/source_maps_test.ts | 1 | ||||
-rw-r--r-- | packages/sol-cov/test/utils_test.ts | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/packages/sol-cov/test/collect_coverage_entries_test.ts b/packages/sol-cov/test/collect_coverage_entries_test.ts index 5eedfd55c..f88f3b3c3 100644 --- a/packages/sol-cov/test/collect_coverage_entries_test.ts +++ b/packages/sol-cov/test/collect_coverage_entries_test.ts @@ -1,7 +1,6 @@ import * as chai from 'chai'; import * as fs from 'fs'; import * as _ from 'lodash'; -import 'make-promises-safe'; import 'mocha'; import * as path from 'path'; diff --git a/packages/sol-cov/test/instructions_test.ts b/packages/sol-cov/test/instructions_test.ts index 02f30a5ca..058053cf9 100644 --- a/packages/sol-cov/test/instructions_test.ts +++ b/packages/sol-cov/test/instructions_test.ts @@ -1,5 +1,4 @@ import * as chai from 'chai'; -import 'make-promises-safe'; import 'mocha'; import { constants } from '../src/constants'; diff --git a/packages/sol-cov/test/sol_compiler_artifact_adapter_test.ts b/packages/sol-cov/test/sol_compiler_artifact_adapter_test.ts index 0ebad669b..9c58d2cef 100644 --- a/packages/sol-cov/test/sol_compiler_artifact_adapter_test.ts +++ b/packages/sol-cov/test/sol_compiler_artifact_adapter_test.ts @@ -1,6 +1,5 @@ import * as chai from 'chai'; import * as _ from 'lodash'; -import 'make-promises-safe'; import 'mocha'; import * as path from 'path'; diff --git a/packages/sol-cov/test/source_maps_test.ts b/packages/sol-cov/test/source_maps_test.ts index 071f5a057..5820bedd7 100644 --- a/packages/sol-cov/test/source_maps_test.ts +++ b/packages/sol-cov/test/source_maps_test.ts @@ -1,7 +1,6 @@ import * as chai from 'chai'; import * as fs from 'fs'; import * as _ from 'lodash'; -import 'make-promises-safe'; import 'mocha'; import * as path from 'path'; diff --git a/packages/sol-cov/test/utils_test.ts b/packages/sol-cov/test/utils_test.ts index 9a0227773..6fc8fcfe1 100644 --- a/packages/sol-cov/test/utils_test.ts +++ b/packages/sol-cov/test/utils_test.ts @@ -1,6 +1,5 @@ import * as chai from 'chai'; import * as dirtyChai from 'dirty-chai'; -import 'make-promises-safe'; import 'mocha'; import { utils } from '../src/utils'; |