-
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.
* minor changes * fixed testcases login und logoff * added eslint * fixed findings from eslint, new env file for helm.dev, renamed page-file for sonarcloud * updated readme.md * bump ts eslint version * Update tests/logoff.spec.ts Co-authored-by: Julian Aggarwal <141040785+jaggarnaut@users.noreply.github.com> * Update tests/login.spec.ts Co-authored-by: Julian Aggarwal <141040785+jaggarnaut@users.noreply.github.com> * doppelte Punkte in den Dateinamen entfernt * login-test mit zusätzlicher Prüfung auf Anzeige der Startseite, url auf helm.dev geändert da test.dev nicht funktioniert * SPSH-228 configure code coverage exceptions (#3) * Ignore page.ts files in coverage * Ignore playwright config in coverage * übeerflüssige Kommentare gelöscht --------- Co-authored-by: jaggarnaut <julian.aggarwal@dataport.de> Co-authored-by: Julian Aggarwal <141040785+jaggarnaut@users.noreply.github.com> Co-authored-by: Marvin Rode (Cap) <127723478+marode-cap@users.noreply.github.com>
- Loading branch information
1 parent
e6a6487
commit 89c3ab7
Showing
17 changed files
with
1,768 additions
and
148 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
UMGEBUNG="dev" | ||
UMGEBUNG="test.dev" | ||
PW="" | ||
USER="" | ||
URL_PORTAL="https://test.dev.spsh.dbildungsplattform.de/" |
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,4 @@ | ||
UMGEBUNG="helm.dev" | ||
PW="" | ||
USER="" | ||
URL_PORTAL="https://helm.dev.spsh.dbildungsplattform.de/" |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
/* eslint-env node */ | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/stylistic', | ||
'plugin:playwright/recommended' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
root: true, | ||
parserOptions: { | ||
sourceType: 'module' | ||
} | ||
} |
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.