13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
import { expect, tap } from 'tapbundle';
|
|
|
|
import * as npmgInstall from '../ts/tools.install';
|
|
import * as smartenv from 'smartenv';
|
|
|
|
let environment = new smartenv.Smartenv();
|
|
|
|
tap.test("should install default list globally when parsed 'default' as argument", async () => {
|
|
await npmgInstall.install('default');
|
|
});
|
|
|
|
tap.start();
|