Skip to content

Commit

Permalink
test: enable fixed tests and mute the known failures
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Dec 4, 2023
1 parent f3386c3 commit f153957
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions core/test/unit/src/vcs/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,11 +517,6 @@ const commonGitHandlerTests = (gitScanMode: GitScanMode) => {
*/
for (const testParam of testParams) {
it(testParam.name, async () => {
// FIXME
if (handler.name === "git-repo") {
return
}

// doesn't match file exclusion pattern -> should be included
const notExcludedByFilename = resolve(tmpPath, "bar.txt")

Expand Down Expand Up @@ -595,7 +590,9 @@ const commonGitHandlerTests = (gitScanMode: GitScanMode) => {
it(testParam.name, async () => {
// FIXME
if (handler.name === "git-repo") {
return
if (testParam.name === "without globs" || testParam.name === "with prefix globs") {
return
}
}

// doesn't match file exclusion pattern -> should be included
Expand Down

0 comments on commit f153957

Please sign in to comment.