Skip to content
Snippets Groups Projects
Commit 57e9c3c9 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6967 fix camelCase

parent d8e6b8b7
No related branches found
No related tags found
No related merge requests found
...@@ -8,10 +8,10 @@ const benutzerPage: BenutzerE2EComponent = new BenutzerE2EComponent(); ...@@ -8,10 +8,10 @@ const benutzerPage: BenutzerE2EComponent = new BenutzerE2EComponent();
const role1: string = 'VERWALTUNG_USER'; const role1: string = 'VERWALTUNG_USER';
const role2: string = 'VERWALTUNG_LOESCHEN'; const role2: string = 'VERWALTUNG_LOESCHEN';
const role3: string = 'VERWALTUNG_POSTSTELLE'; const role3: string = 'VERWALTUNG_POSTSTELLE';
const OrganisationsEinheitName1: string = 'Ordnungsamt'; const organisationsEinheitName1: string = 'Ordnungsamt';
const OrganisationsEinheitName2: string = 'Denkmalpflege'; const organisationsEinheitName2: string = 'Denkmalpflege';
const OrganisationsEinheitName3: string = 'Wirtschaftsförderung'; const organisationsEinheitName3: string = 'Wirtschaftsförderung';
const OrganisationsEinheitNone: string = 'keine zuständige Stelle zugewiesen'; const organisationsEinheitNone: string = 'keine zuständige Stelle zugewiesen';
const emailAddress: string = 'peter.von.der.post@ozg-sh.de'; const emailAddress: string = 'peter.von.der.post@ozg-sh.de';
describe('Benutzer und Rollen', () => { describe('Benutzer und Rollen', () => {
...@@ -28,12 +28,12 @@ describe('Benutzer und Rollen', () => { ...@@ -28,12 +28,12 @@ describe('Benutzer und Rollen', () => {
it('should show users and attributes in table', () => { it('should show users and attributes in table', () => {
exist(benutzerPage.getUserEntry('ariane')); exist(benutzerPage.getUserEntry('ariane'));
benutzerPage.stringExistsInUserEntry(role1, 'dorothea'); benutzerPage.stringExistsInUserEntry(role1, 'dorothea');
benutzerPage.stringExistsInUserEntry(OrganisationsEinheitName1, 'ludwig'); benutzerPage.stringExistsInUserEntry(organisationsEinheitName1, 'ludwig');
benutzerPage.stringExistsInUserEntry(role1, 'zelda'); benutzerPage.stringExistsInUserEntry(role1, 'zelda');
benutzerPage.stringExistsInUserEntry(role2, 'ludwig'); benutzerPage.stringExistsInUserEntry(role2, 'ludwig');
benutzerPage.stringExistsInUserEntry(OrganisationsEinheitName2, 'zelda'); benutzerPage.stringExistsInUserEntry(organisationsEinheitName2, 'zelda');
benutzerPage.stringExistsInUserEntry(OrganisationsEinheitName3, 'zelda'); benutzerPage.stringExistsInUserEntry(organisationsEinheitName3, 'zelda');
benutzerPage.stringExistsInUserEntry(OrganisationsEinheitNone, 'richard'); benutzerPage.stringExistsInUserEntry(organisationsEinheitNone, 'richard');
benutzerPage.stringExistsInUserEntry(emailAddress, 'peter'); benutzerPage.stringExistsInUserEntry(emailAddress, 'peter');
benutzerPage.stringExistsInUserEntry(role3, 'peter'); benutzerPage.stringExistsInUserEntry(role3, 'peter');
}); });
......
...@@ -7,7 +7,7 @@ import { loginAsAriane } from '../../support/user-util'; ...@@ -7,7 +7,7 @@ import { loginAsAriane } from '../../support/user-util';
describe('Signatur', () => { describe('Signatur', () => {
const mainPage: MainPage = new MainPage(); const mainPage: MainPage = new MainPage();
const signaturePage: OrganisationseinheitenSignaturE2EComponent = new OrganisationseinheitenSignaturE2EComponent(); const signaturePage: OrganisationseinheitenSignaturE2EComponent = new OrganisationseinheitenSignaturE2EComponent();
const organisationseinheitenTab: OrganisationsEinheitenE2EComponent = new OrganisationsEinheitenE2EComponent(); const organisationsEinheitenTab: OrganisationsEinheitenE2EComponent = new OrganisationsEinheitenE2EComponent();
const signaturText: string = 'Signatur\nmit\n\n\n\nZeilenumbruch\n\n'; const signaturText: string = 'Signatur\nmit\n\n\n\nZeilenumbruch\n\n';
...@@ -18,7 +18,7 @@ describe('Signatur', () => { ...@@ -18,7 +18,7 @@ describe('Signatur', () => {
it('should open signature page for Bauamt on click', () => { it('should open signature page for Bauamt on click', () => {
waitForSpinnerToDisappear(); waitForSpinnerToDisappear();
mainPage.clickOrganisationsEinheitenTab(); mainPage.clickOrganisationsEinheitenTab();
organisationseinheitenTab.clickOrganisationsEinheit('Bauamt'); organisationsEinheitenTab.clickOrganisationsEinheit('Bauamt');
haveText(signaturePage.getOrganisationsEinheitName(), 'Bauamt'); haveText(signaturePage.getOrganisationsEinheitName(), 'Bauamt');
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment