initial
This commit is contained in:
34
test/test.ts
Normal file
34
test/test.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import 'typings-test'
|
||||
import * as should from 'should'
|
||||
|
||||
import * as smartbrowser from '../dist/index'
|
||||
|
||||
let testSmartBrowser: smartbrowser.Smartbrowser
|
||||
|
||||
describe('smartbrowser', () => {
|
||||
it('should instanstiate a new browser ', function () {
|
||||
testSmartBrowser = new smartbrowser.Smartbrowser({
|
||||
webroot: './test/assets/',
|
||||
watchFiles: ['./test/assets/']
|
||||
})
|
||||
should(testSmartBrowser).be.instanceof(smartbrowser.Smartbrowser)
|
||||
})
|
||||
it('should start the browser ', function (done) {
|
||||
testSmartBrowser.start().then((bsInstance) => {
|
||||
done()
|
||||
}).catch((err) => { console.log(err) })
|
||||
})
|
||||
it('should stop the browser ', function (done) {
|
||||
this.timeout(10000)
|
||||
setTimeout(() => {
|
||||
testSmartBrowser.stop().then(() => {
|
||||
done()
|
||||
}).catch((err) => { console.log(err) })
|
||||
}, 2000)
|
||||
})
|
||||
it('should exit correctly',function(){
|
||||
setTimeout(() => {
|
||||
process.exit(0)
|
||||
},2000)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user