From a324c908031760142649f62814be447cd447b18c Mon Sep 17 00:00:00 2001 From: Mike VanDenburgh Date: Thu, 29 Aug 2024 11:34:20 -0400 Subject: [PATCH] Remove Vue test configuration We do not have any tests for the Vue application. --- .github/workflows/ci.yaml | 18 ------------------ vue/package.json | 1 - vue/test/testing.test.ts | 7 ------- vue/tsconfig.json | 1 - 4 files changed, 27 deletions(-) delete mode 100644 vue/test/testing.test.ts diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 62b1b9d27..8a324c34b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -117,24 +117,6 @@ jobs: run: pip install --upgrade poetry tox - name: Run tests run: tox -e ${{ matrix.tox-env }} - test-vue: - name: Test [vue] - runs-on: ubuntu-22.04 - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Setup Node environment - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: npm - cache-dependency-path: vue/package-lock.json - - name: Install packages - run: npm ci - working-directory: vue - - name: Run tests - run: npm run test - working-directory: vue test-docker-build: name: Test Docker build runs-on: ubuntu-22.04 diff --git a/vue/package.json b/vue/package.json index 7ec131b75..bd00ca081 100644 --- a/vue/package.json +++ b/vue/package.json @@ -7,7 +7,6 @@ "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", "build:client": "openapi --input http://django:80/api/openapi.json --output src/client", - "test": "vitest run", "lint": "npm run lint:eslint; npm run lint:stylelint; npm run lint:typescript;", "lint:fix": "npm run lint:eslint:fix; npm run lint:stylelint:fix; npm run lint:typescript;", "lint:eslint": "eslint --ext .cjs,.js,.ts,.vue --ignore-path ../.gitignore .", diff --git a/vue/test/testing.test.ts b/vue/test/testing.test.ts deleted file mode 100644 index f27b9364e..000000000 --- a/vue/test/testing.test.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { describe, expect, test } from "vitest"; - -describe("test testing", () => { - test("testing framework", async () => { - expect(true).toBeTruthy(); - }); -}); diff --git a/vue/tsconfig.json b/vue/tsconfig.json index 8ebe6d760..cd08ce5b4 100644 --- a/vue/tsconfig.json +++ b/vue/tsconfig.json @@ -12,7 +12,6 @@ "esModuleInterop": true, "lib": ["ESNext", "DOM"], "skipLibCheck": true, - "types": ["vitest/globals"] }, "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], "references": [{ "path": "./tsconfig.node.json" }]