2017-04-19 18:02:43 +00:00
|
|
|
import { tap, expect } from 'tapbundle'
|
2017-05-17 13:59:10 +00:00
|
|
|
import * as smartenv from '../dist/index'
|
2017-04-19 18:02:43 +00:00
|
|
|
|
2017-05-17 13:59:10 +00:00
|
|
|
let testEnv: smartenv.Smartenv
|
2015-12-10 14:52:14 +00:00
|
|
|
|
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
|
|
|
})
|
2015-11-28 13:49:44 +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
|
|
|
})
|
2015-11-28 13:49:44 +00:00
|
|
|
|
2017-05-17 13:59:10 +00:00
|
|
|
tap.start()
|