Fix multi-zone test by removing dependency list (#65589)

This test was failing with my changes in
https://github.com/vercel/next.js/pull/64932 because it was using the
new Next.js changes, but not the corresponding react-dom changes.

An alternative solution would be to update the react-dom versions to
match those in the rest of the project (19 beta), but I think this is
better overall.

After removing the dependencies, this test works in my branch.
This commit is contained in:
Ethan Arrowood 2024-05-10 08:34:21 -06:00 committed by GitHub
parent 8c5add23a8
commit 64878739c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,5 @@
{ {
"name": "with-zones", "name": "with-zones",
"version": "1.0.0", "version": "1.0.0",
"private": true, "private": true
"dependencies": {
"@types/react": "18.0.28",
"next": "canary",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3"
}
} }