tools/test/test.ts

11 lines
250 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
2019-06-17 08:27:33 +00:00
import * as tools from '../ts/tools.install';
2016-03-03 01:04:14 +00:00
2017-05-28 18:03:40 +00:00
tap.test("should install default list globally when parsed 'default' as argument", async () => {
2019-06-17 08:27:33 +00:00
await tools.install('default');
2018-06-07 20:41:25 +00:00
});
2017-05-28 18:03:40 +00:00
2018-06-07 20:41:25 +00:00
tap.start();