tools/test/test.ts
2017-05-28 20:03:40 +02:00

13 lines
326 B
TypeScript

import { expect, tap } from 'tapbundle'
import * as npmgInstall from '../dist/npmg.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()