diff --git a/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-postfach-nachricht-error.e2e-spec.ts b/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-postfach-nachricht-error.e2e-spec.ts index 1303ec69ddecccf0228954e7ec8a5a43056bf7b9..81797b373bc006496f834a41a1a9157a2834e60c 100644 --- a/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-postfach-nachricht-error.e2e-spec.ts +++ b/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-postfach-nachricht-error.e2e-spec.ts @@ -70,13 +70,13 @@ describe('Postfach nachricht user profile on backend error', () => { }) }) - describe.skip('FIXME(OZG-2950 UserManager) on status 503', () => { + describe('on status 503', () => { const statusCode: number = 503; const getUserProfileInterceptor: string = 'getUserProfileInterceptor'; beforeEach(() => { - interceptWithResponse(HttpMethodE2E.GET, 'http://localhost:9092/api/userProfiles/*', { + interceptWithResponse(HttpMethodE2E.GET, '/api/userProfiles/*', { statusCode, body: { issues: [{ messageCode: MessageCodeE2E.SERVICE_UNAVAILABLE }] } }).as(getUserProfileInterceptor); }) diff --git a/goofy-client/apps/goofy-e2e/src/plugins/index.js b/goofy-client/apps/goofy-e2e/src/plugins/index.js index 0ca7f2013436776942e95db051a1e5d1576d229b..7d313ef7f13bdbf827186f340b6d10fbe746c3d2 100644 --- a/goofy-client/apps/goofy-e2e/src/plugins/index.js +++ b/goofy-client/apps/goofy-e2e/src/plugins/index.js @@ -229,7 +229,7 @@ function insertIntoUserManagerDatabase(config, collection, data){ function insert(databaseUrl, databaseName, collection, data){ MongoClient.connect(databaseUrl, (error, connection) => { - console.log('connect to database...') + console.log(`connect to ${databaseName} database with ${databaseUrl}`); if (!error) { console.log('success'); var db = connection.db(databaseName);