From 8a84d17ad65a5ca73c343dbbfc9daf0533abc971 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 31 Jan 2025 15:12:04 -0800 Subject: [PATCH] fix lint --- docs/src/test-api/class-teststepinfo.md | 2 +- packages/playwright/types/test.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/test-api/class-teststepinfo.md b/docs/src/test-api/class-teststepinfo.md index d611b49e6c..a453d212c8 100644 --- a/docs/src/test-api/class-teststepinfo.md +++ b/docs/src/test-api/class-teststepinfo.md @@ -10,7 +10,7 @@ import { test, expect } from '@playwright/test'; test('basic test', async ({ page, browserName }, TestStepInfo) => { await test.step('check some behavior', async step => { await step.skip(browserName === 'webkit', 'The feature is not available in WebKit'); - //... rest of the step code + // ... rest of the step code await page.check('input'); }); }); diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index 65870365b9..95eb71d899 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -9563,7 +9563,7 @@ export interface TestInfoError { * test('basic test', async ({ page, browserName }, TestStepInfo) => { * await test.step('check some behavior', async step => { * await step.skip(browserName === 'webkit', 'The feature is not available in WebKit'); - * //... rest of the step code + * // ... rest of the step code * await page.check('input'); * }); * });