From 624a9d55dc1095a775f56169258567c0755c385c Mon Sep 17 00:00:00 2001 From: osohyun0224 <53892427+osohyun0224@users.noreply.github.com> Date: Sun, 9 Jun 2024 17:07:30 +0900 Subject: [PATCH] fix(lint): undered 100 length --- docs/src/test-annotations-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/test-annotations-js.md b/docs/src/test-annotations-js.md index 0f87971333..8ed468af75 100644 --- a/docs/src/test-annotations-js.md +++ b/docs/src/test-annotations-js.md @@ -182,7 +182,7 @@ You can also annotate all tests in a group or provide multiple annotations: import { test, expect } from '@playwright/test'; test.describe('report tests', { - annotation: { type: 'category', description: 'report', url: 'https://github.com/microsoft/playwright/issues/23180' }, + annotation: { type: 'category', description: 'report' }, }, () => { test('test report header', async ({ page }) => { // ... @@ -192,7 +192,7 @@ test.describe('report tests', { annotation: [ { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' }, { type: 'performance', description: 'very slow test!' }, - { type: 'performance', description: 'very slow test!', url: 'https://github.com/microsoft/playwright/issues/23180' }, + { type: 'performance', url: 'https://github.com/microsoft/playwright/issues/23180' }, ], }, async ({ page }) => { // ...