@jupyterlab/galata 5.2.3 → 5.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -536,16 +536,16 @@ Example:
|
|
|
536
536
|
test.use({ tmpPath: 'test-toc' });
|
|
537
537
|
|
|
538
538
|
test.describe.serial('Table of Contents', () => {
|
|
539
|
-
test.beforeAll(async ({
|
|
540
|
-
const contents = galata.newContentsHelper(
|
|
539
|
+
test.beforeAll(async ({ request, tmpPath }) => {
|
|
540
|
+
const contents = galata.newContentsHelper(request);
|
|
541
541
|
await contents.uploadFile(
|
|
542
542
|
path.resolve(__dirname, `./notebooks/${fileName}`),
|
|
543
543
|
`${tmpPath}/${fileName}`
|
|
544
544
|
);
|
|
545
545
|
});
|
|
546
546
|
|
|
547
|
-
test.afterAll(async ({
|
|
548
|
-
const contents = galata.newContentsHelper(
|
|
547
|
+
test.afterAll(async ({ request, tmpPath }) => {
|
|
548
|
+
const contents = galata.newContentsHelper(request);
|
|
549
549
|
await contents.deleteDirectory(tmpPath);
|
|
550
550
|
});
|
|
551
551
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/galata",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.4",
|
|
4
4
|
"description": "JupyterLab UI Testing Framework",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"test:update": "jlpm test:base:update && jlpm test:benchmark:update"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@jupyterlab/application": "^4.2.
|
|
48
|
-
"@jupyterlab/apputils": "^4.3.
|
|
49
|
-
"@jupyterlab/coreutils": "^6.2.
|
|
50
|
-
"@jupyterlab/debugger": "^4.2.
|
|
51
|
-
"@jupyterlab/docmanager": "^4.2.
|
|
52
|
-
"@jupyterlab/nbformat": "^4.2.
|
|
53
|
-
"@jupyterlab/notebook": "^4.2.
|
|
54
|
-
"@jupyterlab/services": "^7.2.
|
|
55
|
-
"@jupyterlab/settingregistry": "^4.2.
|
|
47
|
+
"@jupyterlab/application": "^4.2.4",
|
|
48
|
+
"@jupyterlab/apputils": "^4.3.4",
|
|
49
|
+
"@jupyterlab/coreutils": "^6.2.4",
|
|
50
|
+
"@jupyterlab/debugger": "^4.2.4",
|
|
51
|
+
"@jupyterlab/docmanager": "^4.2.4",
|
|
52
|
+
"@jupyterlab/nbformat": "^4.2.4",
|
|
53
|
+
"@jupyterlab/notebook": "^4.2.4",
|
|
54
|
+
"@jupyterlab/services": "^7.2.4",
|
|
55
|
+
"@jupyterlab/settingregistry": "^4.2.4",
|
|
56
56
|
"@lumino/coreutils": "^2.1.2",
|
|
57
57
|
"@playwright/test": "^1.43.1",
|
|
58
58
|
"@stdlib/stats": "~0.0.13",
|