fix(core): update

This commit is contained in:
2019-06-17 10:27:33 +02:00
parent 3bb3860f44
commit 9d7023e739
2 changed files with 2 additions and 5 deletions

View File

@ -1,12 +1,10 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as npmgInstall from '../ts/tools.install';
import * as smartenv from '@pushrocks/smartenv';
import * as tools from '../ts/tools.install';
let environment = new smartenv.Smartenv();
tap.test("should install default list globally when parsed 'default' as argument", async () => {
await npmgInstall.install('default');
await tools.install('default');
});
tap.start();