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