diff --git a/package.json b/package.json index 284b6a5..0d01941 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/test/test.ts b/test/test.ts index 4332ed8..a7f3665 100644 --- a/test/test.ts +++ b/test/test.ts @@ -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();