Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
55d450be69 | |||
ae2ade8680 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cert",
|
||||
"version": "0.0.12",
|
||||
"version": "0.0.13",
|
||||
"description": "Easily obain SSL certificates from LetsEncrypt. Supports DNS-01 challenge. TypeScript ready.",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
|
@ -30,7 +30,7 @@ describe("cert", function () {
|
||||
});
|
||||
it("should get a valid certificate", function (done) {
|
||||
this.timeout(120000);
|
||||
testCert.getDomainCert("hello1.bleu.de").then(function () {
|
||||
testCert.getDomainCert("hello2.bleu.de").then(function () {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -34,7 +34,7 @@ describe("cert",function(){
|
||||
})
|
||||
it("should get a valid certificate",function(done){
|
||||
this.timeout(120000);
|
||||
testCert.getDomainCert("hello1.bleu.de").then(() => {
|
||||
testCert.getDomainCert("hello2.bleu.de").then(() => {
|
||||
done();
|
||||
});
|
||||
})
|
||||
|
Reference in New Issue
Block a user