smartacme/test/test.ts

35 lines
926 B
TypeScript
Raw Permalink 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 get the ACME urls', function (done) {
testAcme.getAcmeUrls().then(() => { done() })
})
it('should prepare the Instance', function (done) {
testAcme.prepareAcme().then(done)
})
it('should have created keyPair', function () {
2016-11-01 19:16:43 +00:00
})
2016-11-11 13:17:50 +00:00
it('should register a new account', function (done) {
testAcme.createAccount().then(x => {
console.log(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
})