From ea1f2d5e508622e598f5259a8f111e13b2157080 Mon Sep 17 00:00:00 2001 From: Andrii Ieroshenko Date: Tue, 29 Aug 2023 13:56:05 -0700 Subject: [PATCH] Remove frontend js unit tests as not planned (#371) --- packages/jupyter-ai/README.md | 11 ----------- packages/jupyter-ai/src/__tests__/jupyter_gai.spec.ts | 9 --------- 2 files changed, 20 deletions(-) delete mode 100644 packages/jupyter-ai/src/__tests__/jupyter_gai.spec.ts diff --git a/packages/jupyter-ai/README.md b/packages/jupyter-ai/README.md index e476f6579..abead6192 100644 --- a/packages/jupyter-ai/README.md +++ b/packages/jupyter-ai/README.md @@ -122,17 +122,6 @@ To execute them, run: pytest -vv -r ap --cov jupyter_ai ``` -#### Frontend tests - -This extension is using [Jest](https://jestjs.io/) for JavaScript code testing. - -To execute them, execute: - -```sh -jlpm -jlpm test -``` - #### Integration tests This extension uses [Playwright](https://playwright.dev/docs/intro/) for the integration tests (aka user level tests). diff --git a/packages/jupyter-ai/src/__tests__/jupyter_gai.spec.ts b/packages/jupyter-ai/src/__tests__/jupyter_gai.spec.ts deleted file mode 100644 index 34b6c861a..000000000 --- a/packages/jupyter-ai/src/__tests__/jupyter_gai.spec.ts +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Example of [Jest](https://jestjs.io/docs/getting-started) unit tests - */ - -describe('jupyter_ai', () => { - it('should be tested', () => { - expect(1 + 1).toEqual(2); - }); -});