From 9fa5b88800c52ec76b25e116656f7cc3cd52230a Mon Sep 17 00:00:00 2001 From: Lukas Bockstaller Date: Wed, 6 Mar 2024 13:35:17 +0100 Subject: [PATCH] chore: retrigger test --- tests/playwright-test/test-tag.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/test-tag.spec.ts b/tests/playwright-test/test-tag.spec.ts index b062e46899..9259e3b1c6 100644 --- a/tests/playwright-test/test-tag.spec.ts +++ b/tests/playwright-test/test-tag.spec.ts @@ -166,9 +166,9 @@ test('should be included in testInfo if comming from describe', async ({ runInli const result = await runInlineTest({ 'a.test.ts': ` import { test, expect } from '@playwright/test'; - test.describe('describe with tag', { tag: '@tag1' }, async ()=>{ + test.describe('describe with tag', { tag: '@tag2' }, async ()=>{ test('test with tag', async ({}, testInfo) => { - expect(testInfo.tags).toStrictEqual(["@tag1"]); + expect(testInfo.tags).toStrictEqual(["@tag2"]); }); }); `,