Skip to content

Commit 50d6e29

Browse files
award999michael-weng
authored andcommitted
Fix failing test case
1 parent baf1787 commit 50d6e29

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,14 @@ jobs:
2424
/bin/bash -c "source $NVM_DIR/nvm.sh && nvm install $NODE_VERSION"
2525
echo "$NODE_PATH" >> $GITHUB_PATH
2626
linux_build_command: ./docker/test.sh
27-
enable_linux_checks: true
2827
# Windows
29-
enable_windows_checks: true
30-
enable_windows_docker: false
3128
windows_exclude_swift_versions: '[{"swift_version": "nightly"}]'
3229
windows_env_vars: |
3330
CI=1
3431
FAST_TEST_RUN=1
3532
windows_pre_build_command: .github\workflows\scripts\windows\install-nodejs.ps1
3633
windows_build_command: docker\test-windows.ps1
34+
enable_windows_docker: false
3735

3836
soundness:
3937
name: Soundness

test/integration-tests/tasks/SwiftTaskProvider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ suite("SwiftTaskProvider Test Suite", () => {
7373
toolchain
7474
);
7575
const { exitCode } = await executeTaskAndWaitForResult(task);
76-
expect(exitCode).to.equal(1);
76+
expect(exitCode).to.not.equal(0);
7777
});
7878

7979
test("Exit code on failure to launch", async () => {

0 commit comments

Comments
 (0)