Move filter and sort tests to pure tests

The filter and sort tests were located inside the React tests since they
were already using Jest. Now that the pure tests have been switched to
Jest, these tests can finally be moved to the "normal" pure tests.
This commit is contained in:
Koen Vlaswinkel
2022-11-23 14:06:57 +01:00
parent cc869daf05
commit 80b2a43be9

View File

@@ -6,9 +6,8 @@ import {
filterAndSortRepositoriesWithResultsByName,
matchesFilter,
SortKey,
} from "../../../pure/variant-analysis-filter-sort";
} from "../../src/pure/variant-analysis-filter-sort";
// TODO: Move this file to the "pure" tests once it has been switched to Jest
describe(matchesFilter.name, () => {
const repository = {
fullName: "github/codeql",