Skip to content

Commit ba4445d

Browse files
workflow: add HTML report for run-id 13869594779 (attempt: 1)
1 parent e5ed666 commit ba4445d

File tree

50 files changed

+285
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+285
-0
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Diff for: reports/feat/next-15/13869594779/1/index.html

+68
Large diffs are not rendered by default.

Diff for: reports/feat/next-15/13869594779/1/trace/assets/codeMirrorModule-BxIIN4UE.js

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: reports/feat/next-15/13869594779/1/trace/assets/testServerConnection-JQMZFCzK.js

+69
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: reports/feat/next-15/13869594779/1/trace/codeMirrorModule.ez37Vkbh.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
71.7 KB
Binary file not shown.

Diff for: reports/feat/next-15/13869594779/1/trace/index.CrbWWHbf.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: reports/feat/next-15/13869594779/1/trace/index.ZHEPt4GY.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: reports/feat/next-15/13869594779/1/trace/index.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="icon" href="./playwright-logo.svg" type="image/svg+xml">
8+
<link rel="manifest" href="./manifest.webmanifest">
9+
<title>Playwright Trace Viewer</title>
10+
<script type="module" crossorigin src="./index.ZHEPt4GY.js"></script>
11+
<link rel="modulepreload" crossorigin href="./assets/testServerConnection-JQMZFCzK.js">
12+
<link rel="stylesheet" crossorigin href="./testServerConnection.0WapKERv.css">
13+
<link rel="stylesheet" crossorigin href="./index.CrbWWHbf.css">
14+
</head>
15+
<body>
16+
<div id="root"></div>
17+
<dialog id="fallback-error">
18+
<p>The Playwright Trace Viewer must be loaded over the <code>http://</code> or <code>https://</code> protocols.</p>
19+
<p>For more information, please see the <a href="https://aka.ms/playwright/trace-viewer-file-protocol">docs</a>.</p>
20+
</dialog>
21+
<script>
22+
if (!/^https?:/.test(window.location.protocol))
23+
document.getElementById("fallback-error").show();
24+
</script>
25+
</body>
26+
</html>
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<body>
5+
<script>
6+
(async () => {
7+
if (!navigator.serviceWorker)
8+
throw new Error(`Service workers are not supported.\nMake sure to serve the Trace Viewer (${window.location}) via HTTPS or localhost.`);
9+
navigator.serviceWorker.register('sw.bundle.js');
10+
if (!navigator.serviceWorker.controller)
11+
await new Promise(f => navigator.serviceWorker.oncontrollerchange = f);
12+
const traceUrl = new URL(location.href).searchParams.get('trace');
13+
const params = new URLSearchParams();
14+
params.set('trace', traceUrl);
15+
await fetch('contexts?' + params.toString()).then(r => r.json());
16+
await location.reload();
17+
})();
18+
</script>
19+
<script src="stall.js"></script>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)