Skip to content

Commit

Permalink
Fix failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Jan 16, 2024
1 parent 549a236 commit 511efd1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ extends:
- stage: Build
jobs:
- job: Job_1
displayName: VSCode-Test-Runner-CI
displayName: VSCode-Lombok-CI
templateContext:
outputs:
- output: pipelineArtifact
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extends:
- stage: Build
jobs:
- job: Job_1
displayName: VSCode-Test-Runner-Nightly
displayName: VSCode-Lombok-Nightly
templateContext:
outputs:
- output: pipelineArtifact
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extends:
- stage: Build
jobs:
- job: Job_1
displayName: VSCode-Test-Runner-Nightly
displayName: VSCode-Lombok-Nightly
templateContext:
outputs:
- output: pipelineArtifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install Node.js modules
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install Node.js modules
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install Node.js modules
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion src/test/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function main(): Promise<void> {
// run the integration test
await runTests({ vscodeExecutablePath, extensionDevelopmentPath, extensionTestsPath });
} catch (err) {
console.error('Failed to run tests');
console.error(`Failed to run tests: ${err}`);
process.exit(1);
}
}
Expand Down

0 comments on commit 511efd1

Please sign in to comment.