-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature-demo
- Loading branch information
Showing
72 changed files
with
1,226 additions
and
1,035 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"plugins": [ | ||
"istanbul" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,10 @@ dist | |
cypress/screenshots | ||
cypress/downloads | ||
|
||
coverage | ||
results | ||
|
||
.nyc_output | ||
.angular | ||
.vscode | ||
.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"all": true, | ||
"exclude": [ | ||
"./coverage/**", | ||
"cypress/**", | ||
"./dist/**", | ||
"**/*.spec.ts", | ||
"./src/main.ts", | ||
"./src/test.ts", | ||
"**/*.conf.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
/* eslint-disable no-undef */ | ||
|
||
export default { | ||
module: { | ||
rules: [ | ||
{ | ||
test: /\.(ts)$/, | ||
use: { | ||
loader: "babel-loader", | ||
options: { | ||
plugins: ["babel-plugin-istanbul"], | ||
}, | ||
}, | ||
enforce: "post", | ||
include: require("path").join(__dirname, "..", "src"), | ||
exclude: [ | ||
/node_modules/, | ||
/cypress/, | ||
/(ngfactory|ngstyle)\.js/], | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Feature: Banking App - Dashboard Accessebility | ||
|
||
Scenario Outline: Dashboard Accessebility check | ||
Given Ich bin auf der Banking App als Nutzer '<contractID>' mit Passwort '<password>' eingeloggt | ||
|
||
Examples: | ||
| contractID | password | | ||
| 00002 | 123 | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,31 @@ | ||
Feature: Banking App - Create Account Page | ||
|
||
Scenario Outline: Create Accounts | ||
Given I navigate to the Banking App dashboard page | ||
When When I click on Registrieren button | ||
And I type a first name '<firstName>' and a last name '<lastName>' | ||
And I type a password <password> | ||
And I enter street name <street> a house number '<house>' | ||
And I enter a postcode <zipCode> a city <city> and a country <country> | ||
And I enter an email <email> | ||
And I enter a birthDate <birthDate> | ||
And When I click on Registrieren button again | ||
Then I should be presented with a greeting text <greeting> | ||
When I click on Konto erstellen button | ||
And I click on Giro-Konto button | ||
Then I should be presented with a created Giro Konto | ||
When I click on Konto erstellen button | ||
And I click on Festgeld-Konto button | ||
Then I should be presented with a created Festgeld-Konto called FixedRate | ||
When I click on Konto erstellen button | ||
And I click on Tagesgeld-Konto button | ||
Then I should be presented with a created Tagesgeld-Konto called OnCall | ||
When I click on Konto erstellen button | ||
And I click on Immobilien-Finanzierungskonto button | ||
Then I should be presented an alert box with text Immobilien-Finanzierungskonto Erstellen | ||
When I click on Kredit Anfordern Button | ||
Then I should be presented with a created Immobilien-Finanzierungskonto called RealEstate | ||
|
||
|
||
Examples: | ||
| firstName | lastName | password | street | house | zipCode | city | country | email | birthDate | greeting | | ||
| John | Doe | 123 | Hauptstr. | 1 | 10555 | Berlin | Deutschland | john@doe.de | 2000-09-09 | Hallo John! | | ||
|
||
Given I navigate to the Banking App dashboard page | ||
When When I click on Registrieren button | ||
And I type a first name '<firstName>' and a last name '<lastName>' | ||
And I type a password <password> | ||
And I enter street name <street> a house number '<house>' | ||
And I enter a postcode <zipCode> a city <city> and a country <country> | ||
And I enter an email <email> | ||
And I enter a birthDate <birthDate> | ||
And When I click on Registrieren button again | ||
Then I should be presented with a greeting text <greeting> | ||
When I click on Konto erstellen button | ||
And I click on Giro-Konto button | ||
Then I should be presented with a created Giro Konto | ||
When I click on Konto erstellen button | ||
And I click on Festgeld-Konto button | ||
Then I should be presented with a created Festgeld-Konto called FixedRate | ||
When I click on Konto erstellen button | ||
And I click on Tagesgeld-Konto button | ||
Then I should be presented with a created Tagesgeld-Konto called OnCall | ||
When I click on Konto erstellen button | ||
And I click on Immobilien-Finanzierungskonto button | ||
Then I should be presented an alert box with text Immobilien-Finanzierungskonto Erstellen | ||
When I click on Kredit Anfordern Button | ||
Then I should be presented with a created Immobilien-Finanzierungskonto called RealEstate | ||
|
||
Examples: | ||
| firstName | lastName | password | street | house | zipCode | city | country | email | birthDate | greeting | | ||
| John | Doe | 123 | Hauptstr. | 1 | 10555 | Berlin | Deutschland | john@doe.de | 2000-09-09 | Willkommen John! | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.