tools/test/test.ts

13 lines
354 B
TypeScript
Raw Normal View History

2019-06-17 08:26:26 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2016-03-02 17:11:00 +00:00
2018-06-07 20:41:25 +00:00
import * as npmgInstall from '../ts/tools.install';
2019-06-17 08:26:26 +00:00
import * as smartenv from '@pushrocks/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();