Skip to content

Commit

Permalink
fix: Test findings
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Sep 22, 2024
1 parent b77869b commit 258c34c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/linter/linter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ export async function resolveReader({
}

let fsBasePath = projectRootDir;
let fsBasePathTest = "";
let fsBasePathTest = path.join(projectRootDir, "test");
let virBasePath = namespace ? `/resources/${namespace}/` : "/resources/";
let virBasePathTest = namespace ? `/resources/${namespace}/` : "/test-resources/";
let virBasePathTest = namespace ? `/test-resources/${namespace}/` : "/test-resources/";

try {
const graph = await getProjectGraph(projectRootDir);
Expand Down

0 comments on commit 258c34c

Please sign in to comment.