19 lines
501 B
HTML
19 lines
501 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Fixture Diagnostics</title>
|
|
</head>
|
|
<body>
|
|
<h1>Diagnostics Fixture</h1>
|
|
<script>
|
|
console.log("fixture:console-log")
|
|
console.warn("fixture:console-warn")
|
|
fetch("/missing-endpoint").catch(() => {})
|
|
setTimeout(() => {
|
|
throw new Error("fixture:page-error")
|
|
}, 50)
|
|
</script>
|
|
</body>
|
|
</html>
|