tools/test/test.ts

13 lines
332 B
TypeScript
Raw Normal View History

2018-06-07 20:41:25 +00:00
import { expect, tap } from 'tapbundle';
2016-03-02 17:11:00 +00:00
2018-06-07 20:41:25 +00:00
import * as npmgInstall from '../ts/tools.install';
import * as smartenv from 'smartenv';
2016-03-03 01:04:14 +00:00
2018-06-07 20:41:25 +00:00
let environment = new smartenv.Smartenv();
2017-05-28 18:03:40 +00:00
tap.test("should install default list globally when parsed 'default' as argument", async () => {
2018-06-07 20:41:25 +00:00
await npmgInstall.install('default');
});
2017-05-28 18:03:40 +00:00
2018-06-07 20:41:25 +00:00
tap.start();