fix(core): update

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

View File

@ -37,7 +37,6 @@
"dependencies": {
"@gitzone/tsrun": "^1.2.6",
"@pushrocks/smartcli": "^3.0.7",
"@pushrocks/smartenv": "^4.0.6",
"@pushrocks/smartfile": "^7.0.2",
"@pushrocks/smartlog": "^2.0.19",
"@pushrocks/smartlog-destination-local": "^8.0.2",

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();