diff --git a/e2e-report/components/table.js b/e2e-report/components/table.js
index 85b55a0fd6..ddce9310e6 100644
--- a/e2e-report/components/table.js
+++ b/e2e-report/components/table.js
@@ -34,7 +34,7 @@ function TestSuiteRow({ suite, idx }) {
<>
-
+
{suite.name}
|
diff --git a/e2e-report/utils/data.js b/e2e-report/utils/data.js
index 6f874c67a6..77e81e5ac2 100644
--- a/e2e-report/utils/data.js
+++ b/e2e-report/utils/data.js
@@ -12,6 +12,7 @@ nonEmptySuites.forEach((suite) => {
suite.failedKnown = actualFailed.filter((t) => !!t.reason).length || 0
suite.failedUnknown = suite.failed - suite.failedKnown
+ suite.sourceUrl = `https://github.com/vercel/next.js/blob/${fileData.nextVersion}/${suite.file}`
})
const suitesWithFailures = nonEmptySuites.filter((suite) => suite.failed > 0)