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); - }); -});