From cb0c6edd3716c50ec8585b20a07ee4c85a6bf1c6 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 26 Sep 2024 13:25:19 +0200 Subject: [PATCH] fixup: relax test assertion --- packages/e2e-tests/test/e2e-tls.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/e2e-tests/test/e2e-tls.spec.ts b/packages/e2e-tests/test/e2e-tls.spec.ts index 573fa85e0..736530c78 100644 --- a/packages/e2e-tests/test/e2e-tls.spec.ts +++ b/packages/e2e-tests/test/e2e-tls.spec.ts @@ -168,7 +168,7 @@ describe('e2e TLS', function () { const result = await shell.waitForPromptOrExit(); expect(result.state).to.equal('exit'); shell.assertContainsOutput( - /unable to verify the first certificate|self[- ]signed certificate in certificate chain/ + /unable to verify the first certificate|self[- ]signed certificate in certificate chain|unable to get local issuer certificate/ ); }); @@ -185,7 +185,7 @@ describe('e2e TLS', function () { const result = await shell.waitForPromptOrExit(); expect(result.state).to.equal('exit'); shell.assertContainsOutput( - /unable to verify the first certificate|self[- ]signed certificate in certificate chain/ + /unable to verify the first certificate|self[- ]signed certificate in certificate chain|unable to get local issuer certificate/ ); });