Files
actual/packages/desktop-client/src/hooks/useIsTestEnv.ts
Matt Fiddaman f3419a4ee2 fix flaky reports tests (#6193)
* add isTestEnv hook

* disable all recharts animations in test env

* note

* drop all reports snapshots

* Update VRT screenshots

Auto-generated by VRT workflow

PR: #6193

* disable animation instead of zeroing duration

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-11-18 17:35:49 +00:00

6 lines
132 B
TypeScript

import * as Platform from 'loot-core/shared/platform';
export function useIsTestEnv(): boolean {
return Platform.isPlaywright;
}