From c550fdd3f27519dbabb57e08a44b449fe6cc26cd Mon Sep 17 00:00:00 2001 From: John Stallo Date: Fri, 29 Aug 2025 14:15:05 +0800 Subject: [PATCH 1/2] Add 404 error page and Playwright reports page --- 404.html | 47 +++++++++ index.html | 297 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 344 insertions(+) create mode 100644 404.html create mode 100644 index.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..82b4d9c --- /dev/null +++ b/404.html @@ -0,0 +1,47 @@ + + + + + + 404 Not Found + + + +
+

404

+

Oops! The page you are looking for does not exist.

+

Go back to the homepage

+
+ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..0479c34 --- /dev/null +++ b/index.html @@ -0,0 +1,297 @@ + + + +Playwright Reports + + +

Playwright Reports

+

Updated …

+ +
+
+ All + Passed + Failed + Flaky +
+ + +
+ + + + From b1794e64a30a4d878679e0e8eb19282b5dbe3811 Mon Sep 17 00:00:00 2001 From: John Stallo Date: Fri, 29 Aug 2025 14:22:29 +0800 Subject: [PATCH 2/2] Add .DS_Store to .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8805229..c3a5ea9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ node_modules/ /playwright-report/ /blob-report/ /playwright/.cache/ -.env \ No newline at end of file +.env +.DS_Store \ No newline at end of file