Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfulton9 committed Jun 14, 2024
1 parent 55f7e7f commit 6aef227
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui-tests/tests/jupyterlab_new_launcher.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ test.describe('Quick Settings', () => {
test('show starred from quick settings', async ({ page }) => {
const launcher = page.locator('.jp-LauncherBody');
await page.locator('.jp-Launcher-QuickSettings').click();
await page.locator('.lm-Menu-itemLabel:text("Show Starred Section")').click()
expect (await launcher.screenshot()).toMatchSnapshot(
await page
.locator('.lm-Menu-itemLabel:text("Show Starred Section")')
.click();
expect(await launcher.screenshot()).toMatchSnapshot(
'launcher_show_starred_from_quicksettings.png'
)

);
});

});

0 comments on commit 6aef227

Please sign in to comment.