From 1cd1f88335991f32c37f342ec04d31c41fed7aa3 Mon Sep 17 00:00:00 2001 From: Craig Perkins Date: Mon, 14 Aug 2023 15:25:57 -0400 Subject: [PATCH] Headless Signed-off-by: Craig Perkins --- test/jest_integration/jwt_auth.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jest_integration/jwt_auth.test.ts b/test/jest_integration/jwt_auth.test.ts index 6ffe26aa5..c1e4602b8 100644 --- a/test/jest_integration/jwt_auth.test.ts +++ b/test/jest_integration/jwt_auth.test.ts @@ -35,7 +35,7 @@ describe('start OpenSearch Dashboards server', () => { const pageTitleXPath = '//*[@id="osdOverviewPageHeader__title"]'; // Browser Settings const browser = 'firefox'; - const options = new Options(); + const options = new Options().headless(); const rawKey = 'This is a very secure secret. No one will ever be able to guess it!'; const b = Buffer.from(rawKey); const signingKey = b.toString('base64');