Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Nov 6, 2024
1 parent 8161829 commit 3e46a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui-tests/tests/jupyterlite_terminal.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test.describe('Images', () => {

// Hide modification times.
const modified = page.locator('span.jp-DirListing-itemModified');
await modified.evaluateAll(els => els.map(el => el.innerHTML = ''));
await modified.evaluateAll(els => els.map(el => (el.innerHTML = '')));

const imageName = 'initial.png';
expect(await page.screenshot()).toMatchSnapshot(imageName.toLowerCase());
Expand Down Expand Up @@ -107,7 +107,7 @@ test.describe('Images', () => {

// Hide modification times.
const modified = page.locator('span.jp-DirListing-itemModified');
await modified.evaluateAll(els => els.map(el => el.innerHTML = ''));
await modified.evaluateAll(els => els.map(el => (el.innerHTML = '')));

const imageName = 'various-commands.png';
expect(await page.screenshot()).toMatchSnapshot(imageName.toLowerCase());
Expand Down

0 comments on commit 3e46a34

Please sign in to comment.