Closed mdodgelooker closed 3 years ago
Status | Category | Percentage | Covered / Total |
---|---|---|---|
π’ | Statements | 94.84% | 7303/7700 |
π‘ | Branches | 87.16% | 4651/5336 |
π’ | Functions | 93.63% | 2102/2245 |
π’ | Lines | 95.38% | 7067/7409 |
Status of coverage: π’ - ok, π‘ - slightly more than threshold, π΄ - under the threshold
Report generated by π§ͺjest coverage report action from 029acbd84f13087d625d2e1a3aecb12a9877bd08
Previously,
DialogSurface
,DrawerSurface
, andBacklog
were using CSS transition to animate in and out. The problem with this is that the transition starts when the className changes from'entering'
to'entered'
which is 300ms after the click to open. The dialog renders immediately on click, then sits hidden for 300ms before animating in.We want the animation to begin immediately on render, so we have to use CSS animation instead.
PanelSurface
was already doing this.