Skip to content

Commit 3380baa

Browse files
authored
[patch] fix tags showing (#70)
1 parent 41c57a2 commit 3380baa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setup/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { processTagsOnTestStart } from './process-tags';
1010
const debug = Debug('cypress-allure:setup');
1111

1212
export const allureAdapterSetup = () => {
13-
Cypress.env('cyTagsShowTagsInTitle', Cypress.env('allureShowTagsInTitle'));
13+
Cypress.env('cyTagsShowTagsInTitle', Cypress.env('allureShowTagsInTitle') ?? Cypress.env('cyTagsShowTagsInTitle'));
1414

1515
registerTags();
1616
registerCommands();

0 commit comments

Comments
 (0)