a48088765a
* fixed group section * simplified create group dialog * create subgroup * initial search groups * added initial search * add empty state and links to details * Added cypress tests * fixed types * changed to the more clear getId * changed to use testid * fixed merge error * fixed test * changed text for empty sub groups * fix merge error * fix test
20 lines
512 B
TypeScript
20 lines
512 B
TypeScript
// ESM-HMR Interface: `import.meta.hot`
|
|
|
|
interface ImportMeta {
|
|
// TODO: Import the exact .d.ts files from "esm-hmr"
|
|
// https://github.com/pikapkg/esm-hmr
|
|
hot: any;
|
|
env: Record<string, any>;
|
|
}
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable<Subject> {
|
|
/**
|
|
* Get one or more DOM elements by `data-testid`.
|
|
*
|
|
* @example
|
|
* cy.getId('searchButton') // Gets the <button data-testid="searchButton">Search</button>
|
|
*/
|
|
getId(selector: string, ...args): Chainable<any>;
|
|
}
|
|
}
|