smartenv/test/test.ts

15 lines
296 B
TypeScript
Raw Normal View History

import { tap, expect } from 'tapbundle'
2017-05-17 13:59:10 +00:00
import * as smartenv from '../dist/index'
2017-05-17 13:59:10 +00:00
let testEnv: smartenv.Smartenv
2017-05-17 13:59:10 +00:00
tap.test('should print env', async () => {
testEnv = new smartenv.Smartenv()
2017-04-20 22:04:28 +00:00
})
2017-05-17 13:59:10 +00:00
tap.test('should print a overview to console', async () => {
testEnv.printEnv()
2017-04-20 22:04:28 +00:00
})
2017-05-17 13:59:10 +00:00
tap.start()