-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflow: add HTML report for reports/release/1.16.0/11859711736/1
- Loading branch information
GitHub Report
committed
Nov 15, 2024
1 parent
8c3bf33
commit 6ed36ff
Showing
19 changed files
with
266 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
reports/release/1.16.0/11859380284/1 | ||
reports/release/1.16.0/11859711736/1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
243 | ||
244 |
Binary file added
BIN
+227 KB
...rts/release/1.16.0/11859711736/1/report/data/f9197e4950341bd77c1a0dd06060bda4b085ae16.zip
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
reports/release/1.16.0/11859711736/1/report/trace/assets/codeMirrorModule-55327053.js
Large diffs are not rendered by default.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
reports/release/1.16.0/11859711736/1/report/trace/assets/wsPort-1c3b5f20.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
reports/release/1.16.0/11859711736/1/report/trace/codeMirrorModule.5d0f417c.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file added
BIN
+71.7 KB
reports/release/1.16.0/11859711736/1/report/trace/codicon.79f233d0.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions
1
reports/release/1.16.0/11859711736/1/report/trace/index.a60f70ab.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
reports/release/1.16.0/11859711736/1/report/trace/index.cb92b6e3.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
reports/release/1.16.0/11859711736/1/report/trace/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="icon" href="./playwright-logo.svg" type="image/svg+xml"> | ||
<link rel="manifest" href="./manifest.webmanifest"> | ||
<title>Playwright Trace Viewer</title> | ||
<script type="module" crossorigin src="./index.cb92b6e3.js"></script> | ||
<link rel="modulepreload" crossorigin href="./assets/wsPort-1c3b5f20.js"> | ||
<link rel="stylesheet" href="./wsPort.dd1cbe2e.css"> | ||
<link rel="stylesheet" href="./index.a60f70ab.css"> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
|
||
<dialog id="fallback-error"> | ||
<p>The Playwright Trace Viewer must be loaded over the <code>http://</code> or <code>https://</code> protocols.</p> | ||
<p>For more information, please see the <a href="https://aka.ms/playwright/trace-viewer-file-protocol">docs</a>.</p> | ||
</dialog> | ||
<script> | ||
if (!/^https?:/.test(window.location.protocol)) | ||
document.getElementById("fallback-error").show(); | ||
</script> | ||
</body> | ||
</html> |
9 changes: 9 additions & 0 deletions
9
reports/release/1.16.0/11859711736/1/report/trace/playwright-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions
21
reports/release/1.16.0/11859711736/1/report/trace/snapshot.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<body> | ||
<script> | ||
(async () => { | ||
if (!navigator.serviceWorker) | ||
throw new Error(`Service workers are not supported.\nMake sure to serve the Trace Viewer (${window.location}) via HTTPS or localhost.`); | ||
navigator.serviceWorker.register('sw.bundle.js'); | ||
if (!navigator.serviceWorker.controller) | ||
await new Promise(f => navigator.serviceWorker.oncontrollerchange = f); | ||
const traceUrl = new URL(location.href).searchParams.get('trace'); | ||
const params = new URLSearchParams(); | ||
params.set('trace', traceUrl); | ||
await fetch('context?' + params.toString()).then(r => r.json()); | ||
await location.reload(); | ||
})(); | ||
</script> | ||
<script src="stall.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.