We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbded1f commit 82e0918Copy full SHA for 82e0918
packages/test-case-component/src/helpers.ts
@@ -170,6 +170,9 @@ function getIdeFlashDecorations({
170
* multiple classes to the same span causing CSS conflicts
171
*/
172
for (let line = lineStart; line <= lineEnd; line++) {
173
+ if (line >= lines.length) {
174
+ continue
175
+ }
176
const contentLine = lines[line];
177
const startPosition = { line, character: 0 };
178
const endPosition = { line, character: contentLine.length };
0 commit comments