diff --git a/package-lock.json b/package-lock.json index 2568ee412..9560833b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -39,7 +39,7 @@ "semantic-release": "^24.2.0", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } }, "node_modules/@ampproject/remapping": { @@ -13537,10 +13537,11 @@ } }, "node_modules/typescript": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", - "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" diff --git a/package.json b/package.json index 2249d95aa..121941401 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "semantic-release": "^24.2.0", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", - "typescript": "^5.6.3" + "typescript": "^5.7.2" }, "dependencies": { "esbuild": "^0.24.0" diff --git a/packages/statusLambda/tests/test-handler.test.ts b/packages/statusLambda/tests/test-handler.test.ts index 0896611fe..0c9769395 100644 --- a/packages/statusLambda/tests/test-handler.test.ts +++ b/packages/statusLambda/tests/test-handler.test.ts @@ -17,7 +17,7 @@ const mock = new MockAdapter(axios) const dummyContext = helloworldContext describe("Unit test for status check", function () { - let originalEnv: {[key: string]: string | undefined} + let originalEnv: {[key: string]: string | undefined} = process.env afterEach(() => { process.env = {...originalEnv} mock.reset()