We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2d97f5 commit bbca1eaCopy full SHA for bbca1ea
test/unit/model/crypto.spec.ts
@@ -14,7 +14,12 @@ import * as badSslPfxData from 'arraybuffer-loader!../../fixtures/badssl.p12';
14
import * as rsaCaCert from 'arraybuffer-loader!../../fixtures/ca-cert-rsa.pem';
15
import * as ecdsaCaCert from 'arraybuffer-loader!../../fixtures/ca-cert-ecdsa.pem';
16
17
-describe("validatePfx", () => {
+describe("validatePfx", function () {
18
+
19
+ // Occasionally the success-case tests can time out in CI. Very unclear why, I suspect
20
+ // some kind of data/lib loading delay somewhere? No apparent errors...
21
22
+ this.retries(3);
23
24
it("should validate successfully with the right passphrase", () => {
25
expect(
0 commit comments