Skip to content

Commit

Permalink
Updated jest ignore paths, fixed a file name inconsistency
Browse files Browse the repository at this point in the history
Signed-off-by: Omkar Phansopkar <[email protected]>
  • Loading branch information
OmkarPh committed Dec 26, 2023
1 parent 3b5224a commit 707efcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
modulePathIgnorePatterns: ["test-old", "dist"],
testPathIgnorePatterns: ["node_modules", "dist", "test-old"],
modulePathIgnorePatterns: ["node_modules/", "out/", "dist/"],
testPathIgnorePatterns: ["node_modules/", "out/", "dist/"],
};
2 changes: 1 addition & 1 deletion src/pages/TableView/CustomCellRenderers/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import FileLicenseDetectionsRenderer from "./Licenses/FileLicenseDetectionsRenderer";
import FileLicenseCluesRenderer from "./Licenses/FileLicenseCluesRenderer";
import FilePathRenderer from "./Licenses/FilePathRenderer";
import DetectionOriginRenderer from "./Licenses/DetectionOriginRenderer.tsx";
import DetectionOriginRenderer from "./Licenses/DetectionOriginRenderer";
import RegionLinesRenderer from "./Licenses/RegionLinesRenderer";
import ListCellRenderer from "./ListCellRenderer";
import UrlListCellRenderer from "./UrlListCellRenderer";
Expand Down

0 comments on commit 707efcb

Please sign in to comment.