Skip to content

Commit

Permalink
test: ignore lines for coverage that cannot be covered
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Sep 8, 2023
1 parent 0b5feff commit c216b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/language/builtins/workspaceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ let builtinsPath: string;
if (__filename.endsWith('.ts')) {
// Before running ESBuild
builtinsPath = path.join(__dirname, '..', '..', 'resources', 'builtins');
} else {
} /* c8 ignore start */ else {
// After running ESBuild
builtinsPath = path.join(__dirname, '..', 'resources', 'builtins');
}
} /* c8 ignore stop */

/**
* Lists all Safe-DS files in `src/resources/builtins`.
Expand Down

0 comments on commit c216b68

Please sign in to comment.