-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INFRA11 - Define a budget for Performance score in Lighthouse check (#…
…155) * INFRA11 - Define a budget for Performance score in Lighthouse check * dynamic axe chrome driver * link to downloaded chromium * fix for chromium
- Loading branch information
1 parent
1215a2b
commit 7356e4d
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"path": "/*", | ||
"resourceSizes": [], | ||
"timings": [ | ||
{ | ||
"metric": "largest-contentful-paint", | ||
"budget": 2500 | ||
}, | ||
{ | ||
"metric": "max-potential-fid", | ||
"budget": 100 | ||
}, | ||
{ | ||
"metric": "cumulative-layout-shift", | ||
"budget": 0.1 | ||
} | ||
] | ||
} | ||
] |