mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* fix * fix test * update docker compose call * update e2e test * change docker-compose to docker compose in all workflows * use mariadb container with enabled external_network * add sleep to test_database * add maybe new parameter --service-ports needed for docker compose run else there weren't any open ports * try another approach * save change (._.); * fix(frontend): fix e2e setup & add additional check in validation rules. * fix(frontend): fix e2e setup --------- Co-authored-by: einhornimmond <info@einhornimmond.de> Co-authored-by: einhornimmond <dario.rekowski@gmx.de>
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
/// <reference types='cypress' />
|
|
|
|
export class Toasts {
|
|
// selectors
|
|
toastSlot = '#__BVID__toaster-container'
|
|
toastTypeSuccess = '.toast.text-bg-success'
|
|
toastTypeError = '.toast.text-bg-danger'
|
|
toastTitle = '.gdd-toaster-title'
|
|
toastMessage = '.gdd-toaster-body'
|
|
}
|