Skip to content

Commit 8878469

Browse files
committed
Fix failing test case
1 parent 531d9a6 commit 8878469

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
@@ -37,13 +37,11 @@ jobs:
3737
/bin/bash -c "source $NVM_DIR/nvm.sh && nvm install $NODE_VERSION"
3838
echo "$NODE_PATH" >> $GITHUB_PATH
3939
linux_build_command: ./docker/test.sh
40-
enable_linux_checks: true
4140
# Windows
42-
enable_windows_checks: true
43-
enable_windows_docker: false
4441
windows_exclude_swift_versions: '[{"swift_version": "nightly"}]'
4542
windows_env_vars: |
4643
CI=1
4744
FAST_TEST_RUN=1
4845
windows_pre_build_command: .github\workflows\scripts\windows\install-nodejs.ps1
4946
windows_build_command: docker\test-windows.ps1
47+
enable_windows_docker: false

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)