update to latest versions

This commit is contained in:
2017-05-01 22:45:51 +02:00
parent a9a34b65b9
commit 4fd7a510ab
5 changed files with 48 additions and 35 deletions

1
test/test.d.ts vendored
View File

@ -1 +0,0 @@
import 'typings-test';

View File

@ -1,8 +1,8 @@
import 'typings-test'
import * as smartchai from '../dist/index'
import * as smartq from 'smartq'
describe('smartchai', function() {
it('should have typings in place', function(){
smartchai.expect('hi there').to.startsWith('hi')
})
})
smartchai.expect('hi there').to.startWith('hi')
let deferred = smartq.defer()
smartchai.expect(deferred.promise).to.eventually.be.null
deferred.resolve(null)