notebook/ui-tests/package.json
Jeremy Tuloup c0071d7960
Update to JupyterLab 4.0.0rc1 (#6864)
* Update to JupyterLab 4.0.0rc1

* Update yarn.lock

* Bump to `4.0.0rc1`
2023-05-09 18:24:24 +02:00

23 lines
675 B
JSON

{
"name": "@jupyter-notebook/ui-tests",
"private": true,
"version": "0.1.0",
"author": "Project Jupyter",
"license": "BSD-3-Clause",
"description": "Jupyter Notebook UI Tests",
"scripts": {
"rimraf": "rimraf",
"start": "jupyter notebook --config test/jupyter_server_config.py",
"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": {
"@jupyterlab/galata": "~5.0.0-rc.1",
"@playwright/test": "^1.32.0",
"rimraf": "^3.0.2"
}
}