mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +08:00
24 lines
688 B
JSON
24 lines
688 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": {
|
|
"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-alpha.9",
|
|
"@playwright/test": "~1.17.0"
|
|
},
|
|
"resolutions": {
|
|
"@playwright/test": "~1.17.0"
|
|
}
|
|
}
|