Skip to content

Commit ffc9500

Browse files
committed
Update snapshots
1 parent b479196 commit ffc9500

File tree

2 files changed

+18
-23
lines changed

2 files changed

+18
-23
lines changed

.github/workflows/digma/push.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Lint & test & build
22

33
on:
44
push:
5-
branches: ['digma']
5+
branches:
6+
- 'digma'
67
# Github Actions don't support YAML anchors yet, so we have to repeat
78
# the paths-ignore in both push and pull_request events.
89
# More info: https://github.com/actions/runner/issues/1182
@@ -14,7 +15,8 @@ on:
1415
- 'DCO'
1516
- 'LICENSE'
1617
pull_request:
17-
branches: ['digma']
18+
branches:
19+
- 'digma'
1820
paths-ignore:
1921
- '.vscode/**'
2022
- '.prettierignore'

packages/jaeger-ui/src/components/common/__snapshots__/TraceName.test.js.snap

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ exports[`<TraceName> renders empty string error in error state 1`] = `
44
<span
55
className="TraceName is-error "
66
>
7-
<BreakableText
8-
className="BreakableText"
7+
<Title
8+
breakable={true}
99
text="Error: Unknown error"
10-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
1110
/>
1211
</span>
1312
`;
@@ -16,10 +15,9 @@ exports[`<TraceName> renders error object in error state 1`] = `
1615
<span
1716
className="TraceName is-error "
1817
>
19-
<BreakableText
20-
className="BreakableText"
18+
<Title
19+
breakable={true}
2120
text="ERROR-OBJECT-MESSAGE"
22-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
2321
/>
2422
</span>
2523
`;
@@ -28,10 +26,9 @@ exports[`<TraceName> renders error object with empty message in error state 1`]
2826
<span
2927
className="TraceName is-error "
3028
>
31-
<BreakableText
32-
className="BreakableText"
29+
<Title
30+
breakable={true}
3331
text="Error"
34-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
3532
/>
3633
</span>
3734
`;
@@ -40,10 +37,9 @@ exports[`<TraceName> renders in error state 1`] = `
4037
<span
4138
className="TraceName is-error "
4239
>
43-
<BreakableText
44-
className="BreakableText"
40+
<Title
41+
breakable={true}
4542
text="TEST-ERROR-MESSAGE"
46-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
4743
/>
4844
</span>
4945
`;
@@ -63,10 +59,9 @@ exports[`<TraceName> renders with className 1`] = `
6359
<span
6460
className="TraceName TEST-CLASS-NAME"
6561
>
66-
<BreakableText
67-
className="BreakableText"
62+
<Title
63+
breakable={true}
6864
text="<trace-without-root-span>"
69-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
7065
/>
7166
</span>
7267
`;
@@ -75,10 +70,9 @@ exports[`<TraceName> renders with default props 1`] = `
7570
<span
7671
className="TraceName "
7772
>
78-
<BreakableText
79-
className="BreakableText"
73+
<Title
74+
breakable={true}
8075
text="<trace-without-root-span>"
81-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
8276
/>
8377
</span>
8478
`;
@@ -87,10 +81,9 @@ exports[`<TraceName> renders with traceName 1`] = `
8781
<span
8882
className="TraceName "
8983
>
90-
<BreakableText
91-
className="BreakableText"
84+
<Title
85+
breakable={true}
9286
text="TEST-TRACE-NAME"
93-
wordRegexp={/\\\\W\\*\\\\w\\+\\\\W\\*/g}
9487
/>
9588
</span>
9689
`;

0 commit comments

Comments
 (0)