13 lines
326 B
TypeScript
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()
|