Refine auth, player, tracks, playlists, search, workflows, edge cases, forms, responsive, network errors, error boundary, performance, visual regression, cross-browser, profile, smoke, storybook, chat, and session tests. Add audit test suite (accessibility, ethical, functional, design tokens). Update test helpers and visual snapshots. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
472 B
TypeScript
22 lines
472 B
TypeScript
// Re-export les helpers existants + helpers d'audit spécialisés
|
|
export {
|
|
loginViaUI,
|
|
loginViaAPI,
|
|
navigateTo,
|
|
assertPageLoads,
|
|
assertNoDebugText,
|
|
assertNotBroken,
|
|
collectNetworkErrors,
|
|
dismissMobileSidebar,
|
|
assertPlayerVisible,
|
|
navigateToPageWithTracks,
|
|
playFirstTrack,
|
|
fillForm,
|
|
waitForToast,
|
|
testId,
|
|
CONFIG,
|
|
SELECTORS as BASE_SELECTORS,
|
|
} from '../../helpers';
|
|
|
|
export * from './visual-helpers';
|
|
export * from './interaction-helpers';
|