From fe0f466ca00bd43b680f7303e18db902c76fead4 Mon Sep 17 00:00:00 2001 From: hippotastic <6137925+hippotastic@users.noreply.github.com> Date: Wed, 22 Jun 2022 15:11:48 +0200 Subject: [PATCH] Fix react dependencies to improve test reliability (#3673) * Fix local react tests by unifying versions * Add missing dependencies to react tests * Add changeset * Fix lockfile Co-authored-by: Matthew Phillips --- .../test/edge-functions/fixtures/edge-basic/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/integrations/netlify/test/edge-functions/fixtures/edge-basic/package.json b/packages/integrations/netlify/test/edge-functions/fixtures/edge-basic/package.json index 16ff300883d2..e84f1d5f371a 100644 --- a/packages/integrations/netlify/test/edge-functions/fixtures/edge-basic/package.json +++ b/packages/integrations/netlify/test/edge-functions/fixtures/edge-basic/package.json @@ -5,6 +5,8 @@ "dependencies": { "astro": "workspace:*", "@astrojs/react": "workspace:*", - "@astrojs/netlify": "workspace:*" + "@astrojs/netlify": "workspace:*", + "react": "^18.1.0", + "react-dom": "^18.1.0" } }