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.
__init__.robot
1 parent 6770537 commit d6d1785Copy full SHA for d6d1785
vscode-client/testcontrollermanager.ts
@@ -439,7 +439,8 @@ export class TestControllerManager {
439
440
public refreshDocument(document: vscode.TextDocument): void {
441
if (!SUPPORTED_LANGUAGES.includes(document.languageId)) return;
442
- if (!SUPPORTED_SUITE_FILE_EXTENSIONS.some((ext) => document.uri.path.endsWith(ext))) return;
+ if (!SUPPORTED_SUITE_FILE_EXTENSIONS.some((ext) => document.uri.path.toLowerCase().endsWith(ext))) return;
443
+ if (document.uri.path.toLowerCase().endsWith("__init__.robot")) return;
444
445
const uri_str = document.uri.toString();
446
if (this.didChangedTimer.has(uri_str)) {
0 commit comments