tools/test/test.ts
2019-06-19 13:12:10 +02:00

10 lines
249 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as tools from '../ts/tools.install';
tap.test("should install default list globally when parsed 'default' as argument", async () => {
await tools.install('default');
});
tap.start();