Skip to content

Commit

Permalink
Mocker logger
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFjellstad committed Oct 15, 2024
1 parent d629d1b commit ebafef8
Showing 1 changed file with 5 additions and 21 deletions.
26 changes: 5 additions & 21 deletions cypress/e2e/selvbestemt.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@

describe('Utfylling og innsending av selvbestemt skjema', () => {
beforeEach(() => {
cy.intercept('/im-dialog/api/logger', {
statusCode: 200,
body: 'OK'
}).as('logger');

cy.intercept('/im-dialog/api/sp-soeknader', {
statusCode: 200,
body: [
Expand Down Expand Up @@ -64,18 +69,11 @@ describe('Utfylling og innsending av selvbestemt skjema', () => {
}
}).as('aktiveorgnr');

// cy.wait('@kvittering');
// cy.wait('@hent-forespoersel');

cy.findByLabelText('Angi personnummer for den ansatte').type('25087327879');
cy.contains('Neste').click();

cy.location('pathname').should('equal', '/im-dialog/initiering2');

// cy.findAllByLabelText('Sykmelding fra').last().clear().type('26.08.24');
// cy.realPress('Escape');
// cy.findAllByLabelText('Sykmelding til').last().clear().type('30.08.24');
// cy.realPress('Escape');
cy.findByLabelText('11.09.2024 - 15.09.2024 (pluss 4 egenmeldingsdager)').check();

cy.contains('Neste').click();
Expand All @@ -92,8 +90,6 @@ describe('Utfylling og innsending av selvbestemt skjema', () => {

cy.get('[data-cy="inntekt-beloep-input"]').clear().type('7500');

// cy.get('[data-cy="refusjon-arbeidsgiver-beloep-input"]').should('have.value', '7500');

cy.findAllByLabelText('Velg endringsårsak').select('Ferie');

// Jeg er ikke sikker på hvorfor det må være denne frem og tilbakde dansen
Expand Down Expand Up @@ -172,8 +168,6 @@ describe('Utfylling og innsending av selvbestemt skjema', () => {
});

it('selvbestemt med varig lønnsendring', () => {
// cy.intercept('/im-dialog/api/hent-forespoersel', { fixture: '../../mockdata/trenger-originalen.json' }).as('hent-forespoersel');

cy.intercept('/im-dialog/kvittering/agi/1234-5678-1234-5678-123456789012', {
statusCode: 200,
body: 'OK'
Expand All @@ -194,19 +188,11 @@ describe('Utfylling og innsending av selvbestemt skjema', () => {
}
}).as('aktiveorgnr');

// cy.wait('@kvittering');
// cy.wait('@hent-forespoersel');

cy.findByLabelText('Angi personnummer for den ansatte').type('25087327879');
cy.contains('Neste').click();

cy.location('pathname').should('equal', '/im-dialog/initiering2');

// cy.findAllByLabelText('Sykmelding fra').last().clear().type('26.08.24');
// cy.realPress('Escape');
// cy.findAllByLabelText('Sykmelding til').last().clear().type('30.08.24');
// cy.realPress('Escape');

cy.findByLabelText('11.09.2024 - 15.09.2024 (pluss 4 egenmeldingsdager)').check();
cy.findByLabelText('16.09.2024 - 17.09.2024').check();

Expand All @@ -224,8 +210,6 @@ describe('Utfylling og innsending av selvbestemt skjema', () => {

cy.get('[data-cy="inntekt-beloep-input"]').clear().type('7500');

// cy.get('[data-cy="refusjon-arbeidsgiver-beloep-input"]').should('have.value', '7500');

cy.findAllByLabelText('Velg endringsårsak').select('Varig lønnsendring');

cy.findAllByLabelText('Lønnsendring gjelder fra').clear().type('30.06.24');
Expand Down

0 comments on commit ebafef8

Please sign in to comment.