Fix frontend test assertions - remove inaccessible form role checks
- Update login-form.test.tsx to remove screen.getByRole('form') assertions
- Tests now check for form elements directly by label text
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Generates the permutation of all possible values that {@link pathMatch} the `path` parameter.
|
||||
* The array is in longest-to-shortest order. Useful when building custom {@link Store} implementations.
|
||||
*
|
||||
* @example
|
||||
* ```
|
||||
* permutePath('/foo/bar/')
|
||||
* // ['/foo/bar/', '/foo/bar', '/foo', '/']
|
||||
* ```
|
||||
*
|
||||
* @param path - the path to generate permutations for
|
||||
* @public
|
||||
*/
|
||||
export declare function permutePath(path: string): string[];
|
||||
Reference in New Issue
Block a user