Skip to content

Commit 4b74c67

Browse files
committed
Fix and lint
1 parent 8d82821 commit 4b74c67

File tree

3 files changed

+245
-25
lines changed

3 files changed

+245
-25
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"prettier:check": "jlpm prettier:base --check",
4848
"stylelint": "jlpm stylelint:check --fix",
4949
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
50-
"watch": "run-p watch:src watch:labextension",
50+
"watch": "run-p watch:src watch:labextension",
5151
"watch:labextension": "jupyter labextension watch .",
5252
"watch:src": "tsc -w --sourceMap"
5353
},
@@ -58,7 +58,7 @@
5858
"@jupyterlab/coreutils": "^6.0.0",
5959
"@jupyterlab/notebook": "^4.0.0",
6060
"@jupyterlab/outputarea": "^4.0.0",
61-
"@jupyterlab/rendermime": "^3.8.0",
61+
"@jupyterlab/rendermime": "^4.0.0",
6262
"@jupyterlab/services": "^7.0.0",
6363
"@jupyterlab/ui-components": "^4.0.0",
6464
"@lumino/coreutils": "^2.0.0",
@@ -70,7 +70,7 @@
7070
},
7171
"devDependencies": {
7272
"@jupyterlab/builder": "^4.0.0",
73-
"@types/json-schema": "^7.0.11",
73+
"@types/json-schema": "^7.0.11",
7474
"@types/react": "^18.0.26",
7575
"@types/react-addons-linked-state-mixin": "^0.14.22",
7676
"@typescript-eslint/eslint-plugin": "^6.1.0",
@@ -79,7 +79,7 @@
7979
"eslint": "^8.36.0",
8080
"eslint-config-prettier": "^8.8.0",
8181
"eslint-plugin-prettier": "^5.0.0",
82-
"npm-run-all": "^4.1.5",
82+
"npm-run-all": "^4.1.5",
8383
"prettier": "^3.0.0",
8484
"rimraf": "^5.0.1",
8585
"source-map-loader": "^1.0.2",

ui-tests/tests/lckr_jupyterlab_variableinspector.spec.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { expect, test } from '@jupyterlab/galata';
22

3-
43
test('test', async ({ page }) => {
54
await page.getByText('Python 3 (ipykernel)').first().click();
65
await page.getByText('Python 3 (ipykernel) | Idle').waitFor();
@@ -14,6 +13,6 @@ test('test', async ({ page }) => {
1413
});
1514
await page.getByRole('menu').getByText('Open Variable Inspector').click();
1615

17-
await expect(page.getByRole('row').nth(1)).toHaveText(/aint281$/)
18-
await expect(page.getByRole('row').last()).toHaveText(/bstr46hello$/)
19-
});
16+
await expect(page.getByRole('row').nth(1)).toHaveText(/aint281$/);
17+
await expect(page.getByRole('row').last()).toHaveText(/bstr46hello$/);
18+
});

0 commit comments

Comments
 (0)