diff --git a/eslint-configs/eslint-config-base/package.json b/eslint-configs/eslint-config-base/package.json index 0b0ecfd8..9353d47f 100644 --- a/eslint-configs/eslint-config-base/package.json +++ b/eslint-configs/eslint-config-base/package.json @@ -30,12 +30,12 @@ "eslint-plugin-playwright": "^0.22.1", "eslint-plugin-prettier": "^5.1.3", "jest": ">=29.7.0", - "prettier": ">=3.1.1" + "prettier": ">=3.2.4" }, "peerDependencies": { "@rushstack/eslint-patch": ">=1.1.4", "eslint": ">=8.55.0", "jest": ">=29.7.0", - "prettier": ">=3.1.1" + "prettier": ">=3.2.4" } } diff --git a/package-lock.json b/package-lock.json index b86796a2..34aa013f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -39,13 +39,13 @@ "eslint-plugin-playwright": "^0.22.1", "eslint-plugin-prettier": "^5.1.3", "jest": ">=29.7.0", - "prettier": ">=3.1.1" + "prettier": ">=3.2.4" }, "peerDependencies": { "@rushstack/eslint-patch": ">=1.1.4", "eslint": ">=8.55.0", "jest": ">=29.7.0", - "prettier": ">=3.1.1" + "prettier": ">=3.2.4" } }, "eslint-configs/eslint-config-lib": { @@ -11220,9 +11220,9 @@ } }, "node_modules/prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", - "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", + "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", "bin": { "prettier": "bin/prettier.cjs" }, diff --git a/packages/internal-test-env/src/index.ts b/packages/internal-test-env/src/index.ts index f21939b2..bd8453db 100644 --- a/packages/internal-test-env/src/index.ts +++ b/packages/internal-test-env/src/index.ts @@ -46,11 +46,8 @@ export const availableEnvironments = [ "Custom" as const, ]; -export type AvailableEnvironments = typeof availableEnvironments extends Array< - infer E -> - ? E - : never; +export type AvailableEnvironments = + typeof availableEnvironments extends Array ? E : never; export interface TestingEnvironmentNode extends TestingEnvironmentBase { clientCredentials: { diff --git a/packages/jest-jsdom-polyfills/index.js b/packages/jest-jsdom-polyfills/index.js index 39a74b70..c3f9d4ca 100644 --- a/packages/jest-jsdom-polyfills/index.js +++ b/packages/jest-jsdom-polyfills/index.js @@ -66,6 +66,7 @@ if (typeof globalThis.File === "undefined") { // FIXME This is a temporary workaround for https://github.com/jsdom/jsdom/issues/1724#issuecomment-720727999 // The following fetch APIs are missing in JSDom + if ( typeof globalThis.Response === "undefined" || typeof globalThis.Request === "undefined" ||