Skip to content

Commit b1d25bb

Browse files
authored
chore: Unignore HTML files and reformat with oxfmt (#19311)
Builds on #19200 by: - Removing the ignores that were affecting `*.hbs` and `*.html` files - Fixed some malformed HTML in our tests I initially thought it was some extra stuff done by oxfmt, but its just we didn't have those file extensions in the extension list for the format script. so, its the same output if prettier ran over those files. closes #19223
1 parent 526c3ec commit b1d25bb

File tree

206 files changed

+892
-722
lines changed

Some content is hidden

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

206 files changed

+892
-722
lines changed

.oxfmtrc.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@
1212
"dev-packages/browser-integration-tests/fixtures",
1313
"**/test.ts-snapshots/**",
1414
"/.nx/cache",
15-
"/.nx/workspace-data",
16-
"dev-packages/**/*.html",
17-
"dev-packages/**/*.hbs",
18-
"packages/ember/**/*.hbs",
19-
"packages/ember/**/*.html"
15+
"/.nx/workspace-data"
2016
],
2117
"overrides": [
2218
{

dev-packages/browser-integration-tests/loader-suites/loader/onLoad/keepSentryGlobal/template.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />
55
<script>
6-
window.Sentry = {_customThingOnSentry: 'customThingOnSentry' };
6+
window.Sentry = { _customThingOnSentry: 'customThingOnSentry' };
77
</script>
88
</head>
99
<body></body>

dev-packages/browser-integration-tests/loader-suites/loader/onLoad/sentryOnLoad/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />

dev-packages/browser-integration-tests/loader-suites/loader/onLoad/sentryOnLoadAndOnLoad/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />

dev-packages/browser-integration-tests/loader-suites/loader/onLoad/sentryOnLoadError/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<testsuites id="" name="" tests="1" failures="0" skipped="0" errors="0" time="3.3956">
2+
<testsuite name="suites/replay/privacyBlock/test.ts" timestamp="2026-02-13T20:07:07.731Z" hostname="chromium" tests="1" failures="0" skipped="0" time="1.969" errors="0">
3+
<testcase name="should allow to manually block elements" classname="suites/replay/privacyBlock/test.ts" time="1.969">
4+
</testcase>
5+
</testsuite>
6+
</testsuites>

dev-packages/browser-integration-tests/suites/feedback/attachTo/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />

dev-packages/browser-integration-tests/suites/feedback/captureFeedback/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />

dev-packages/browser-integration-tests/suites/feedback/captureFeedbackAndReplay/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />
@@ -7,7 +7,14 @@
77
<body>
88
<button id="button1" type="button">Button 1</button>
99
<button id="button2" type="button">Button 2</button>
10-
<button id="annotated-button" type="button" data-sentry-component="AnnotatedButton" data-sentry-element="StyledButton">Button 3</button>
10+
<button
11+
id="annotated-button"
12+
type="button"
13+
data-sentry-component="AnnotatedButton"
14+
data-sentry-element="StyledButton"
15+
>
16+
Button 3
17+
</button>
1118
<button id="annotated-button-2" type="button" data-sentry-element="StyledButton">Button 4</button>
1219
</body>
1320
</html>

0 commit comments

Comments
 (0)