smartacme/test/test.ts

27 lines
759 B
TypeScript
Raw Normal View History

2016-11-01 17:27:57 +00:00
import 'typings-test'
import * as should from 'should'
// import the module to test
import * as smartacme from '../dist/index'
2016-11-11 13:17:50 +00:00
describe('smartacme', function () {
2016-11-01 19:16:43 +00:00
let testAcme: smartacme.SmartAcme
2016-11-11 13:17:50 +00:00
it('should create a valid instance', function () {
this.timeout(10000)
2016-11-01 19:16:43 +00:00
testAcme = new smartacme.SmartAcme()
should(testAcme).be.instanceOf(smartacme.SmartAcme)
2016-11-07 17:41:52 +00:00
})
2016-11-11 13:17:50 +00:00
it('should have created keyPair', function () {
should(testAcme.acmeUrl).be.of.type('string')
2016-11-01 19:16:43 +00:00
})
2016-11-11 13:17:50 +00:00
it('should register a new account', function (done) {
this.timeout(40000)
2016-11-11 13:17:50 +00:00
testAcme.createAccount().then(x => {
done()
}).catch(err => {
console.log(err)
done(err)
})
2016-11-01 19:16:43 +00:00
})
2016-11-01 17:27:57 +00:00
})