chore: retrigger test

This commit is contained in:
Lukas Bockstaller 2024-03-06 13:35:17 +01:00
parent 528fc27fb3
commit 9fa5b88800
No known key found for this signature in database

View file

@ -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"]);
});
});
`,