Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alfa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
alfa
Commits
a598842d
Commit
a598842d
authored
3 years ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
OZG-2644 OZG-2682 adjust e2e test
parent
2b2160ae
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
goofy-client/apps/goofy-e2e/src/integration/einheitlicher-ansprechpartner/vorgang-detail/vorgang-forward.e2e-spec.ts
+25
-19
25 additions, 19 deletions
...nsprechpartner/vorgang-detail/vorgang-forward.e2e-spec.ts
with
25 additions
and
19 deletions
goofy-client/apps/goofy-e2e/src/integration/einheitlicher-ansprechpartner/vorgang-detail/vorgang-forward.e2e-spec.ts
+
25
−
19
View file @
a598842d
...
...
@@ -52,7 +52,9 @@ describe('Vorgang forwarding', () => {
describe
(
'
fill forward formular
'
,
()
=>
{
it
(
'
should show validation message for invalid email
'
,
()
=>
{
describe
(
'
with email domain NOT in landesnetz
'
,
()
=>
{
it
(
'
should show validation message for invalid password
'
,
()
=>
{
const
forwardFormular
=
forwardingContainer
.
getFormular
();
forwardFormular
.
getPasswort
().
clear
().
type
(
'
zukurz
'
);
...
...
@@ -62,7 +64,7 @@ describe('Vorgang forwarding', () => {
exist
(
forwardFormular
.
getPasswortError
());
})
it
(
'
should show validation message for invalid
password
'
,
()
=>
{
it
(
'
should show validation message for invalid
email
'
,
()
=>
{
const
forwardFormular
=
forwardingContainer
.
getFormular
();
forwardFormular
.
getZustaendigeStelle
().
clear
().
type
(
'
invalidemail.com
'
);
...
...
@@ -71,17 +73,21 @@ describe('Vorgang forwarding', () => {
exist
(
forwardFormular
.
getZustaendigeStelleError
());
})
})
it
(
'
should show spinner with text on valid formular
'
,
()
=>
{
describe
(
'
with email domain in landesnetz
'
,
()
=>
{
it
(
'
should send formular with landesnetz email and empty password
'
,
()
=>
{
const
forwardFormular
=
forwardingContainer
.
getFormular
();
forwardFormular
.
getZustaendigeStelle
().
clear
().
type
(
FORWARDING_TEST_EMAIL
);
forwardFormular
.
getPasswort
().
clear
()
.
type
(
'
validespasswort
'
)
;
forwardFormular
.
getPasswort
().
clear
();
forwardFormular
.
forward
();
exist
(
forwardingContainer
.
getSpinner
());
})
})
})
describe
(
'
success forwarding
'
,
()
=>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment