23 lines
472 B
TypeScript
23 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';
|