diff --git a/test/e2e/app-dir/back-forward-cache/app/page.tsx b/test/e2e/app-dir/back-forward-cache/app/page.tsx index ef99889b34a77b..a21cf8e2fb8346 100644 --- a/test/e2e/app-dir/back-forward-cache/app/page.tsx +++ b/test/e2e/app-dir/back-forward-cache/app/page.tsx @@ -1,3 +1,4 @@ +// @ts-ignore -- the latest @types/react don't have this anymore import { unstable_Activity as Activity } from 'react' export default function Page() { diff --git a/test/integration/url-imports/next.config.js b/test/integration/url-imports/next.config.js index a76bc7b584f8fd..10ecf72df10846 100644 --- a/test/integration/url-imports/next.config.js +++ b/test/integration/url-imports/next.config.js @@ -2,7 +2,7 @@ module.exports = { experimental: { urlImports: [ 'http://localhost:12345/', - 'https://github.com/vercel/next.js/raw/canary/', + 'https://github.com/vercel/next.js/raw/next-15-5/', ], }, } diff --git a/test/integration/url-imports/pages/css.module.css b/test/integration/url-imports/pages/css.module.css index 68792e4aa13bd8..28c7d989cbdb7d 100644 --- a/test/integration/url-imports/pages/css.module.css +++ b/test/integration/url-imports/pages/css.module.css @@ -1,5 +1,5 @@ .main { - background: url('https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png'); + background: url('https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png'); background-size: contain; width: 300px; height: 300px; diff --git a/test/integration/url-imports/pages/image.js b/test/integration/url-imports/pages/image.js index c483ae1ae10cde..67197bf5519535 100644 --- a/test/integration/url-imports/pages/image.js +++ b/test/integration/url-imports/pages/image.js @@ -1,5 +1,5 @@ import Image from 'next/image' -import logo from 'https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png?_=image' +import logo from 'https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png?_=image' export default () => (