Skip to content

Commit fe747f8

Browse files
committed
debug smoke: match ona a substring for a specific stack frame due to a potential sufix "readonly node content"
fixes microsoft#56069
1 parent 9d63190 commit fe747f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/smoke/src/areas/debug/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const DEBUG_STATUS_BAR = `.statusbar.debugging`;
2525
const NOT_DEBUG_STATUS_BAR = `.statusbar:not(debugging)`;
2626
const TOOLBAR_HIDDEN = `.debug-actions-widget.monaco-builder-hidden`;
2727
const STACK_FRAME = `${VIEWLET} .monaco-tree-row .stack-frame`;
28-
const SPECIFIC_STACK_FRAME = filename => `${STACK_FRAME} .file[title$="${filename}"]`;
28+
const SPECIFIC_STACK_FRAME = filename => `${STACK_FRAME} .file[title*="${filename}"]`;
2929
const VARIABLE = `${VIEWLET} .debug-variables .monaco-tree-row .expression`;
3030
const CONSOLE_OUTPUT = `.repl .output.expression .value`;
3131
const CONSOLE_INPUT_OUTPUT = `.repl .input-output-pair .output.expression .value`;

0 commit comments

Comments
 (0)