File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,13 +61,15 @@ const FLAKINESS_EXPECTED = new Set<string>([
6161] ) ;
6262
6363// Case-specific pixelmatch threshold overrides for known anti-aliasing noise.
64- const CASE_THRESHOLD_OVERRIDES = new Map < string , number > ( [ [ "transientProp-memberExpression" , 0.2 ] ] ) ;
64+ const CASE_THRESHOLD_OVERRIDES = new Map < string , number > ( [
65+ [ "transientProp-memberExpression" , 0.2 ] , // TODO: investigate if this override can be removed
66+ ] ) ;
6567
6668// Case-specific mismatch tolerance overrides (fraction of total pixels).
6769// Dynamic StyleX style functions produce inline CSS variable attributes that
6870// cause sub-pixel text anti-aliasing differences vs styled-components' class-only approach.
6971const CASE_MISMATCH_TOLERANCE_OVERRIDES = new Map < string , number > ( [
70- [ "selector-componentDynamicProp" , 0.03 ] ,
72+ [ "selector-componentDynamicProp" , 0.03 ] , // TODO: investigate if this override can be removed
7173] ) ;
7274
7375type Page = Awaited < ReturnType < Awaited < ReturnType < typeof chromium . launch > > [ "newPage" ] > > ;
You can’t perform that action at this time.
0 commit comments