test-results-reporter / parser

Parse test results from JUnit, TestNG, xUnit and many more
https://www.testbeats.com
MIT License
12 stars 9 forks source link

revisit tags and meta data #72

Closed ASaiAnudeep closed 2 months ago

ASaiAnudeep commented 2 months ago
bryanbcook commented 2 months ago

Can you elaborate on what you'd like to do here?

ASaiAnudeep commented 2 months ago

move tags into its own property

declare class TestCase {
  name: string;
  total: number;

  tags: string[]
  meta_data: Map<string,string>;

}

I have assigned this myself.