diff --git a/nx.json b/nx.json index 2c82999026..acf3ce658d 100644 --- a/nx.json +++ b/nx.json @@ -14,7 +14,8 @@ "!{projectRoot}/**/*.test.tsx", "!{projectRoot}/**/*.spec.ts", "!{projectRoot}/**/*.test.ts" - ] + ], + "sharedGlobals": [{ "runtime": "node --version", "os": "node -e 'console.log(os.platform())'"}] }, "targetDefaults": { "build": { diff --git a/packages/cf-deploy-config-writer/test/unit/index-base.test.ts b/packages/cf-deploy-config-writer/test/unit/index-base.test.ts index c6b625d9dd..c5a8b5b410 100644 --- a/packages/cf-deploy-config-writer/test/unit/index-base.test.ts +++ b/packages/cf-deploy-config-writer/test/unit/index-base.test.ts @@ -90,6 +90,7 @@ describe('CF Writer Base', () => { }); test('Generate deployment configs - standalone with connectivity service', async () => { + jest.setTimeout(20000); const debugSpy = jest.spyOn(logger, 'debug'); const mtaId = 'standalone-with-connectivity-service'; const mtaPath = join(outputDir, mtaId);