Skip to content

Commit 858a326

Browse files
committed
Merge remote-tracking branch 'origin/main' into jest-migration/integration-tests
2 parents 55408a7 + f661386 commit 858a326

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
strategy:
186186
matrix:
187187
os: [ubuntu-latest, windows-latest]
188-
version: ['v2.7.6', 'v2.8.5', 'v2.9.4', 'v2.10.5', 'v2.11.3', 'nightly']
188+
version: ['v2.7.6', 'v2.8.5', 'v2.9.4', 'v2.10.5', 'v2.11.4', 'nightly']
189189
env:
190190
CLI_VERSION: ${{ matrix.version }}
191191
NIGHTLY_URL: ${{ needs.find-nightly.outputs.url }}

extensions/ql-vscode/src/vscode-tests/ensureCli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const _10MB = _1MB * 10;
3838

3939
// CLI version to test. Hard code the latest as default. And be sure
4040
// to update the env if it is not otherwise set.
41-
const CLI_VERSION = process.env.CLI_VERSION || "v2.11.3";
41+
const CLI_VERSION = process.env.CLI_VERSION || "v2.11.4";
4242
process.env.CLI_VERSION = CLI_VERSION;
4343

4444
// Base dir where CLIs will be downloaded into

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)