From e80221e1f4c9e877be042427d87d359a5f94a79f Mon Sep 17 00:00:00 2001 From: SuZhou-Joe Date: Tue, 17 Oct 2023 13:32:14 +0800 Subject: [PATCH] feat: remove hard-coded delay Signed-off-by: SuZhou-Joe --- src/plugins/workspace/server/integration_tests/routes.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/workspace/server/integration_tests/routes.test.ts b/src/plugins/workspace/server/integration_tests/routes.test.ts index 3fc8fc8484a8..b8fdfaa98435 100644 --- a/src/plugins/workspace/server/integration_tests/routes.test.ts +++ b/src/plugins/workspace/server/integration_tests/routes.test.ts @@ -30,7 +30,7 @@ describe('workspace service', () => { opensearchServer = await startOpenSearch(); const startOSDResp = await startOpenSearchDashboards(); root = startOSDResp.root; - }, 30000); + }); afterAll(async () => { await root.shutdown(); await opensearchServer.stop();