Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/TestExplorer/TestExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class TestExplorer {
const target = await folder.swiftPackage.getTarget(uri.fsPath);
if (target?.type !== "test") {
this.logger.info(
`Target ${target} is not a test target, aborting looking for tests within it`,
`Target ${target?.name ?? "undefined"} is not a test target, aborting looking for tests within it`,
"Test Explorer"
);
return;
Expand All @@ -110,7 +110,7 @@ export class TestExplorer {
try {
const tests = await this.lspTestDiscovery.getDocumentTests(folder.swiftPackage, uri);
this.logger.info(
`LSP test discovert found ${tests.length} top level tests`,
`LSP test discovery found ${tests.length} top level tests`,
"Test Explorer"
);
TestDiscovery.updateTestsForTarget(
Expand Down