I am trying to add some custom metadata information in my tests like below
test.describe('my test suite',()=>{
test('my first p0 test',()=>{}).meta({
priority:0,
});
test('my first p0 test',() = {}).meta({ priority:1});
}).meta({
owningTeam: 'business-ux'
});
and use the metadata to target set of test to run. Can you please help me with what support we have for such requirements in playwright?