diff --git a/fullstack-network-manager/test/e2e/core/platform_installer_e2e.test.mjs b/fullstack-network-manager/test/e2e/core/platform_installer_e2e.test.mjs index d84ba19a3..0c1bb77bd 100644 --- a/fullstack-network-manager/test/e2e/core/platform_installer_e2e.test.mjs +++ b/fullstack-network-manager/test/e2e/core/platform_installer_e2e.test.mjs @@ -41,7 +41,7 @@ describe('PackageInstallerE2E', () => { console.error(e) expect(e).toBeNull() } - }) + }, 10000) }) describe('prepareConfigTxt', () => { @@ -160,6 +160,6 @@ describe('PackageInstallerE2E', () => { expect(fileList).toContain(`${constants.HAPI_PATH}/data/config/application.properties`) expect(fileList).toContain(`${constants.HAPI_PATH}/data/config/bootstrap.properties`) fs.rmSync(tmpDir, { recursive: true }) - }) + }, 10000) }) })