diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6307ca7e..863bd1f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -226,4 +226,4 @@ jobs: with: name: jupyter-collaboration_playwright-report path: | - ui-tests/playwright-report \ No newline at end of file + ui-tests/playwright-report diff --git a/ui-tests/jupyter_server_test_config.py b/ui-tests/jupyter_server_test_config.py index f415926c..86fd4353 100644 --- a/ui-tests/jupyter_server_test_config.py +++ b/ui-tests/jupyter_server_test_config.py @@ -7,8 +7,11 @@ opens the server to the world and provide access to JupyterLab JavaScript objects through the global window variable. """ +from typing import Any + from jupyterlab.galata import configure_jupyter_server +c: Any configure_jupyter_server(c) # noqa # Uncomment to set server log level to debug level diff --git a/ui-tests/tests/user-menu.spec.ts b/ui-tests/tests/user-menu.spec.ts index 28c7904a..c943a6f3 100644 --- a/ui-tests/tests/user-menu.spec.ts +++ b/ui-tests/tests/user-menu.spec.ts @@ -86,4 +86,4 @@ test('should copy the shared link with filepath', async ({ page }) => { // let clipboardText1 = await page.evaluate(() => navigator.clipboard.readText()); // expect(clipboardText1).toBe('http://localhost:8888/lab/tree/RTC%3Atests-user-menu-should-copy-the-shared-link-in-clipboard'); -// }); \ No newline at end of file +// });