Skip to content

Commit 536e5bf

Browse files
committed
Don't show a special header in project-less windows
The message couldn't really be read and I think the placeholder defined in the `extension.json` file is appropriate.
1 parent 695cbac commit 536e5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/TestsDataProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export default class TestsDataProvider implements TreeDataProvider<Element> {
296296
if (nova.workspace.path) {
297297
return this.files;
298298
} else {
299-
return [new Header("Open a Deno project to see test results.")];
299+
return [];
300300
}
301301
}
302302
return element.children;

0 commit comments

Comments
 (0)