Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Nov 21, 2024
1 parent 69887c6 commit 9b96ba0
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ test.describe('#commandPalette', () => {

test('should have 2 commands in palette', async ({ page }) => {
await expect(
page.locator(
'#modal-command-palette li[data-command^="jupyterlab-chat"]'
)
page.locator('#modal-command-palette li[data-command^="jupyterlab-chat"]')
).toHaveCount(2);
});

Expand Down Expand Up @@ -87,9 +85,7 @@ test.describe('#commandPalette', () => {

// open it from command palette
await page
.locator(
'#modal-command-palette li[data-command="jupyterlab-chat:open"]'
)
.locator('#modal-command-palette li[data-command="jupyterlab-chat:open"]')
.click();
await fillModal(page, FILENAME);
await expect(page.activity.getTabLocator(FILENAME)).toBeVisible();
Expand Down

0 comments on commit 9b96ba0

Please sign in to comment.