start integration of Smartshell class

This commit is contained in:
2017-03-08 16:51:02 +01:00
parent 26ed390ba6
commit 10cef8bfa6
12 changed files with 317 additions and 33 deletions

View File

@ -1,6 +1,13 @@
import 'typings-test'
import { expect } from 'smartchai'
import * as smartshell from '../dist/index'
describe('smartshell', function() {
it('it should run async', function() {
this.timeout(1000000)
return smartshell.exec('npmdocker speedtest').then((execResult) => {
console.log(execResult.stdout)
})
})
})