style(web): format toast recovery regression

Apply the repository Prettier contract to the accepted toast accessibility test so the Frontend publication check can evaluate the complete recovery-feedback batch.

Change-source: pulse-maintainer
This commit is contained in:
pulse-triage[bot]
2026-09-07 12:12:53 +01:00
parent 036d324460
commit 4f56ffdb73
@@ -17,7 +17,12 @@ describe('Toast', () => {
['success', 'status', 'polite'],
['info', 'status', 'polite'],
] as const)('preserves %s announcement semantics without moving focus', (type, role, live) => {
render(() => <><button>Recovery action</button><ToastContainer /></>);
render(() => (
<>
<button>Recovery action</button>
<ToastContainer />
</>
));
const action = screen.getByRole('button', { name: 'Recovery action' });
action.focus();