@@ -89,12 +89,12 @@ describe('GroupSummary', function () {
89
89
} ) ;
90
90
91
91
await waitFor ( ( ) => {
92
- expect ( screen . getByText ( "What's Wrong" ) ) . toBeInTheDocument ( ) ;
92
+ expect ( screen . getByText ( 'What Happened' ) ) . toBeInTheDocument ( ) ;
93
93
} ) ;
94
94
expect ( await screen . findByText ( 'Test whats wrong' ) ) . toBeInTheDocument ( ) ;
95
95
expect ( screen . getByText ( 'In the Trace' ) ) . toBeInTheDocument ( ) ;
96
96
expect ( screen . getByText ( 'Test trace' ) ) . toBeInTheDocument ( ) ;
97
- expect ( screen . getByText ( 'Possible Cause ' ) ) . toBeInTheDocument ( ) ;
97
+ expect ( screen . getByText ( 'Initial Guess ' ) ) . toBeInTheDocument ( ) ;
98
98
expect ( screen . getByText ( 'Test possible cause' ) ) . toBeInTheDocument ( ) ;
99
99
} ) ;
100
100
@@ -110,12 +110,12 @@ describe('GroupSummary', function () {
110
110
} ) ;
111
111
112
112
await waitFor ( ( ) => {
113
- expect ( screen . getByText ( "What's Wrong" ) ) . toBeInTheDocument ( ) ;
113
+ expect ( screen . getByText ( 'What Happened' ) ) . toBeInTheDocument ( ) ;
114
114
} ) ;
115
115
expect ( await screen . findByText ( 'Test whats wrong' ) ) . toBeInTheDocument ( ) ;
116
116
expect ( screen . getByText ( 'In the Trace' ) ) . toBeInTheDocument ( ) ;
117
117
expect ( screen . getByText ( 'Test trace' ) ) . toBeInTheDocument ( ) ;
118
- expect ( screen . getByText ( 'Possible Cause ' ) ) . toBeInTheDocument ( ) ;
118
+ expect ( screen . getByText ( 'Initial Guess ' ) ) . toBeInTheDocument ( ) ;
119
119
expect ( screen . getByText ( 'Test possible cause' ) ) . toBeInTheDocument ( ) ;
120
120
} ) ;
121
121
@@ -131,12 +131,12 @@ describe('GroupSummary', function () {
131
131
} ) ;
132
132
133
133
await waitFor ( ( ) => {
134
- expect ( screen . getByText ( "What's Wrong" ) ) . toBeInTheDocument ( ) ;
134
+ expect ( screen . getByText ( 'What Happened' ) ) . toBeInTheDocument ( ) ;
135
135
} ) ;
136
136
expect ( await screen . findByText ( 'Test whats wrong' ) ) . toBeInTheDocument ( ) ;
137
137
expect ( screen . getByText ( 'In the Trace' ) ) . toBeInTheDocument ( ) ;
138
138
expect ( screen . getByText ( 'Test trace' ) ) . toBeInTheDocument ( ) ;
139
- expect ( screen . queryByText ( 'Possible Cause ' ) ) . not . toBeInTheDocument ( ) ;
139
+ expect ( screen . queryByText ( 'Initial Guess ' ) ) . not . toBeInTheDocument ( ) ;
140
140
expect ( screen . queryByText ( 'Test possible cause' ) ) . not . toBeInTheDocument ( ) ;
141
141
} ) ;
142
142
@@ -187,11 +187,11 @@ describe('GroupSummary', function () {
187
187
} ) ;
188
188
189
189
await waitFor ( ( ) => {
190
- expect ( screen . getByText ( "What's Wrong" ) ) . toBeInTheDocument ( ) ;
190
+ expect ( screen . getByText ( 'What Happened' ) ) . toBeInTheDocument ( ) ;
191
191
} ) ;
192
192
expect ( await screen . findByText ( 'Test whats wrong' ) ) . toBeInTheDocument ( ) ;
193
193
expect ( screen . queryByText ( 'In the Trace' ) ) . not . toBeInTheDocument ( ) ;
194
- expect ( screen . getByText ( 'Possible Cause ' ) ) . toBeInTheDocument ( ) ;
194
+ expect ( screen . getByText ( 'Initial Guess ' ) ) . toBeInTheDocument ( ) ;
195
195
expect ( screen . getByText ( 'Test possible cause' ) ) . toBeInTheDocument ( ) ;
196
196
} ) ;
197
197
@@ -208,8 +208,12 @@ describe('GroupSummary', function () {
208
208
) ;
209
209
210
210
await waitFor ( ( ) => {
211
- expect ( screen . getByText ( "What's Wrong" ) ) . toBeInTheDocument ( ) ;
211
+ expect ( screen . getByText ( 'Initial Guess' ) ) . toBeInTheDocument ( ) ;
212
212
} ) ;
213
- expect ( await screen . findByText ( 'Test whats wrong' ) ) . toBeInTheDocument ( ) ;
213
+ expect ( await screen . findByText ( 'Test possible cause' ) ) . toBeInTheDocument ( ) ;
214
+ expect ( screen . queryByText ( 'What Happened' ) ) . not . toBeInTheDocument ( ) ;
215
+ expect ( screen . queryByText ( 'Test whats wrong' ) ) . not . toBeInTheDocument ( ) ;
216
+ expect ( screen . queryByText ( 'In the Trace' ) ) . not . toBeInTheDocument ( ) ;
217
+ expect ( screen . queryByText ( 'Test trace' ) ) . not . toBeInTheDocument ( ) ;
214
218
} ) ;
215
219
} ) ;
0 commit comments