Merge branch 'main' into aeisenberg/fix-config-files

This commit is contained in:
Andrew Eisenberg 2022-08-10 15:39:35 -07:00
commit 0403fb7d8c
1760 changed files with 205961 additions and 664 deletions

View file

@ -29,6 +29,7 @@ test("emptyPaths", async (t) => {
packsInputCombines: false,
queriesInputCombines: false,
},
trapCaches: {},
};
analysisPaths.includeAndExcludeAnalysisPaths(config);
t.is(process.env["LGTM_INDEX_INCLUDE"], undefined);
@ -58,6 +59,7 @@ test("nonEmptyPaths", async (t) => {
packsInputCombines: false,
queriesInputCombines: false,
},
trapCaches: {},
};
analysisPaths.includeAndExcludeAnalysisPaths(config);
t.is(process.env["LGTM_INDEX_INCLUDE"], "path1\npath2");
@ -90,6 +92,7 @@ test("exclude temp dir", async (t) => {
packsInputCombines: false,
queriesInputCombines: false,
},
trapCaches: {},
};
analysisPaths.includeAndExcludeAnalysisPaths(config);
t.is(process.env["LGTM_INDEX_INCLUDE"], undefined);