Skip to content

Commit

Permalink
fix test plan
Browse files Browse the repository at this point in the history
  • Loading branch information
baev committed Aug 19, 2024
1 parent ef497a9 commit c2f6d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/allure-jasmine/src/testplan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const getIndexedTestPlan = (): TestPlanIndex | undefined => {

const isInTestPlan = (testplan: TestPlanIndex | undefined, fullName: string | undefined, labels: readonly Label[]) => {
if (!testplan) {
return false;
return true;
}
if (fullName && testplan.fullNames.has(fullName)) {
return true;
Expand Down

0 comments on commit c2f6d71

Please sign in to comment.