Skip to content

Commit 89d82c7

Browse files
committed
more unflaking(?)
1 parent 6e29e4d commit 89d82c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-lcp/template.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</head>
66
<body>
77
<div id="content"></div>
8-
<img src="https://example.com/path/to/image.png" />
8+
<img src="https://example.com/my/image.png" />
99
<button type="button">Test button</button>
1010
</body>
1111
</html>

dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-lcp/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sentryTest('should capture a LCP vital with element details.', async ({ browserN
1111
}
1212

1313
page.route('**', route => route.continue());
14-
page.route('**/path/to/image.png', async (route: Route) => {
14+
page.route('**/my/image.png', async (route: Route) => {
1515
return route.fulfill({ path: `${__dirname}/assets/sentry-logo-600x179.png` });
1616
});
1717

0 commit comments

Comments
 (0)