Add sol-cover implementation

This commit is contained in:
Leonid Logvinov
2018-03-04 19:05:26 -08:00
parent a6571b09d2
commit 13299158d1
110 changed files with 3704 additions and 1570 deletions

View File

@@ -0,0 +1,8 @@
import { getCoverageSubprovider } from '@0xproject/dev-utils';
after('generate coverage report', async () => {
if (process.env.COVERAGE) {
const coverageSubprovider = getCoverageSubprovider();
await coverageSubprovider.writeCoverageAsync();
}
});