From 64d234e0848387afb70b143929fc9f2e72318120 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Sat, 17 Sep 2022 10:36:10 -0700 Subject: [PATCH] wip --- ci/dev/test-integration.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ci/dev/test-integration.sh b/ci/dev/test-integration.sh index e9d260883..b2868154f 100755 --- a/ci/dev/test-integration.sh +++ b/ci/dev/test-integration.sh @@ -24,12 +24,13 @@ main() { path="$CODE_SERVER_PATH" fi - # TODO@jsjoeio - skip if already built - # TODO@jsjoeio - move to integration test suite too - echo "Building test plugin" - pushd test/integration/test-plugin - make -s out/index.js - popd + # WIP jsjoeio + if [[ ! -f "test/integration/test-plugin/out/index.js" ]]; then + echo "Building test plugin" + pushd test/integration/test-plugin + make -s out/index.js + popd + fi echo "Running tests with code-server binary: '$path'"