Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 18, 2025
1 parent 8e8c704 commit 99cd22d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ui-tests/tests/ui.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test.describe('UI Test', () => {
// logs.push(message.text());
// console.log(`Total logs captured: ${logs.length}`);
// });

// await page.goto();

// expect(logs.filter(s => s === 'Initializing OCC...')).toHaveLength(1);
Expand Down Expand Up @@ -50,7 +50,9 @@ test.describe('UI Test', () => {
});

for (const file of fileList) {
test(`Should be able to render ${file} without error`, async ({ browser }) => {
test(`Should be able to render ${file} without error`, async ({
browser
}) => {
const context = await browser.newContext();
const page = await context.newPage();
await page.goto(`lab/index.html?path=${file}`, { waitUntil: 'load' });
Expand Down

0 comments on commit 99cd22d

Please sign in to comment.