Files
Niklas Mischkulnig 7131d706ae Fix flakey devtools test (#81127)
A regression from #81085 @huozhi 


The problem is that `openDevToolsIndicatorPopover` doesn't tell anymore whether the popup menu is open, but if the panel is open, but the "Try Turbopack" text is in the popup menu (only in the old UI).
2025-07-01 18:01:18 +02:00

13 lines
211 B
JavaScript

import React from 'react'
// Create a runtime error.
if ('window' in global) {
throw Error('example runtime error')
}
const Page = () => {
return <div>client-react-dev-overlay</div>
}
export default Page