Skip to content

Commit 80b2a43

Browse files
committed
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.
1 parent cc869da commit 80b2a43

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

extensions/ql-vscode/src/view/variant-analysis/__tests__/filterSort.spec.ts renamed to extensions/ql-vscode/test/pure-tests/variant-analysis-filter-sort.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ import {
66
filterAndSortRepositoriesWithResultsByName,
77
matchesFilter,
88
SortKey,
9-
} from "../../../pure/variant-analysis-filter-sort";
9+
} from "../../src/pure/variant-analysis-filter-sort";
1010

11-
// TODO: Move this file to the "pure" tests once it has been switched to Jest
1211
describe(matchesFilter.name, () => {
1312
const repository = {
1413
fullName: "github/codeql",

0 commit comments

Comments
 (0)