Skip to content

Commit

Permalink
fix for comply with ci runner properties avoid
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelangarano committed Sep 14, 2023
1 parent 505bc2c commit 61dabab
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions e2e/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,14 @@ export const avoidablePropertiesCy13: AvoidableProperty[] = [
property: "config.supportFolder",
mustHave: true,
},
{
property: "config.videosFolder",
mustHave: true,
},
{
property: "config.projectRoot",
mustHave: true,
},
{
property:
/config\.resolved\.browsers\.value\[\d+\]\.minSupportedVersion/,
Expand Down Expand Up @@ -340,6 +348,11 @@ export const avoidablePropertiesCy13: AvoidableProperty[] = [
mustHave: true,
isRegex: true,
},
{
property: /config\.resolved\.browsers\.value\[\d+\]\.path/,
mustHave: true,
isRegex: true,
},
];

export const avoidableApiPropertiesCy13: AvoidableProperty[] = [
Expand Down Expand Up @@ -435,6 +448,16 @@ export const avoidableApiPropertiesCy13: AvoidableProperty[] = [
property: "screenshotURL",
mustHave: true,
},
{
property: /data\.groups\[\d+\]\.platform\.osName/,
mustHave: true,
isRegex: true,
},
{
property: /data\.groups\[\d+\]\.platform\.osVersion/,
mustHave: true,
isRegex: true,
},
];

export const avoidedButNeedePropertiesCy13: AvoidableProperty[] = [
Expand Down

0 comments on commit 61dabab

Please sign in to comment.