updated test

This commit is contained in:
Philipp Kunz 2016-07-06 03:23:51 +02:00
parent d7ec7e254e
commit ae2ade8680
2 changed files with 2 additions and 2 deletions

View File

@ -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();
});
});

View File

@ -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();
});
})