notebook/ui-tests/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
689 B
JSON
Raw Normal View History

2021-11-08 05:53:56 +08:00
{
2022-01-18 20:18:12 +08:00
"name": "@jupyter-notebook/ui-tests",
2021-11-08 05:53:56 +08:00
"private": true,
"version": "0.1.0",
"author": "Project Jupyter",
"license": "BSD-3-Clause",
2022-01-18 23:43:12 +08:00
"description": "Jupyter Notebook UI Tests",
2021-11-08 05:53:56 +08:00
"scripts": {
2022-02-25 04:44:15 +08:00
"start": "jupyter notebook --config test/jupyter_server_config.py",
2021-11-08 05:53:56 +08:00
"start:detached": "yarn run start&",
"test": "playwright test",
"test:debug": "PWDEBUG=1 playwright test",
"test:report": "http-server ./playwright-report -a localhost -o",
"test:update": "playwright test --update-snapshots"
},
"dependencies": {
2022-09-29 00:54:43 +08:00
"@jupyterlab/galata": "~5.0.0-alpha.14",
2022-04-25 23:40:41 +08:00
"@playwright/test": "~1.17.0"
},
"resolutions": {
"@playwright/test": "~1.17.0"
2021-11-08 05:53:56 +08:00
}
}