diff options
Diffstat (limited to '.cypress/cypress/integration/duplicates.js')
-rw-r--r-- | .cypress/cypress/integration/duplicates.js | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/.cypress/cypress/integration/duplicates.js b/.cypress/cypress/integration/duplicates.js index 406b3fb67..c014e0593 100644 --- a/.cypress/cypress/integration/duplicates.js +++ b/.cypress/cypress/integration/duplicates.js @@ -51,12 +51,12 @@ describe('Duplicate tests', function() { }); it('lets an inspector see duplicate reports coming from /reports', function() { - cy.request({ - method: 'POST', - url: 'http://borsetshire.localhost:3001/auth?r=/reports', - form: true, - body: { username: 'admin@example.org', password_sign_in: 'password' } - }); + cy.visit('http://borsetshire.localhost:3001/auth'); + cy.get('[name=username]').type('admin@example.org'); + cy.contains('Sign in with a password').click(); + cy.get('[name=password_sign_in]').type('password'); + cy.get('[name=sign_in_by_password]').last().click(); + cy.url().should('include', '/my'); cy.visit('http://borsetshire.localhost:3001/reports'); cy.get('[href$="/report/1"]:last').click(); cy.get('#report_inspect_form #state').select('Duplicate'); @@ -77,4 +77,23 @@ describe('Duplicate tests', function() { cy.get('#js-duplicate-reports li h3 a').should('have.attr', 'href', '/report/1'); }); + it('does not redisplay duplicates when stopper questions are changed', function() { + cy.server(); + cy.route('/report/new/ajax*').as('report-ajax'); + cy.visit('http://borsetshire.localhost:3001/_test/setup/regression-duplicate-stopper'); // Server-side setup + cy.visit('http://borsetshire.localhost:3001/report/1'); + cy.contains('Report another problem here').click(); + cy.wait('@report-ajax'); + cy.get('[id=category_group]').select('Flytipping'); + cy.get('.extra-category-questions').should('not.be.visible'); + cy.get('.js-hide-duplicate-suggestions:first').click(); + cy.get('.js-hide-duplicate-suggestions:first').should('not.be.visible'); + cy.get('.extra-category-questions').should('be.visible'); + cy.get('[id=form_hazardous]').select('No'); + cy.wait(500); + cy.get('.extra-category-questions').should('be.visible'); + cy.get('.js-hide-duplicate-suggestions:first').should('not.be.visible'); + cy.visit('http://borsetshire.localhost:3001/_test/teardown/regression-duplicate-stopper'); // Server-side setup + }); + }); |