From 4f9f436f20ecab02bfb49f356d0b92a17a6e0658 Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Fri, 27 Oct 2023 23:02:56 +0300 Subject: [PATCH] remove integration testing as we have unit testing --- .github/workflows/ci.yml | 3 --- CONTRIBUTING.MD | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cff7cd33..96a7e9a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,9 +33,6 @@ jobs: # if command with timeout already failed on unix, Windows job will be cancelled - run: pnpm test-plugin if: ${{ runner.os == 'Windows' }} - - uses: GabrielBB/xvfb-action@v1.6 - with: - run: pnpm integration-test - run: cd out && npx @vscode/vsce package --out ../extension.vsix - name: Archive production artifacts uses: actions/upload-artifact@v3 diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD index 52ead98c..a803e92c 100644 --- a/CONTRIBUTING.MD +++ b/CONTRIBUTING.MD @@ -31,6 +31,8 @@ To start the VS Code plugin extension locally for developing: #### Unit Tests +> Note: currently project doesn't use integration testing so you can ignore `integration` folder + They are in `typescript/test` and using vitest, so they faster than integration. Feel free to add new tests here. But note that most of tests are completion tests, but I do hope to add more types tests in the future. To launch them run `pnpm test-plugin`.