[fix][s]: fixes search query and result

This commit is contained in:
steveoni
2020-12-01 13:58:50 +01:00
parent a310b6cf78
commit ad170765c3
2 changed files with 9 additions and 6 deletions

View File

@@ -12,10 +12,10 @@ describe('Test Home Page', () => {
}); });
it('submits the search form', () => { it('submits the search form', () => {
cy.get('form').find('[type="text"]').type('my-dataset'); cy.get('form').find('[type="text"]').type('gdp');
cy.get('form').submit(); cy.get('form').submit();
cy.url().should('include', '/search?q=my-dataset&sort='); cy.url().should('include', '/search?q=gdp&sort=');
cy.get('.text-3xl').and('contain.text', 'results found'); cy.get('.text-3xl').and('contain.text', '1 results found');
}); });
it('shows the recent datasets', () => { it('shows the recent datasets', () => {

View File

@@ -9,10 +9,13 @@ describe('Test Search Page', () => {
}); });
it('should return a search result', () => { it('should return a search result', () => {
cy.get('form').find('[type="text"]').type('world population'); cy.get('form').find('[type="text"]').type('gdp');
cy.get('form').submit(); cy.get('form').submit();
cy.url().should('include', 'search?q=world%20population&sort='); cy.url().should('include', 'search?q=gdp&sort=');
cy.get('.text-3xl').should('have.text', '1 results found'); cy.get('.text-3xl').should('have.text', '1 results found');
cy.get('.text-xl > .text-primary').should('have.text', 'World Population'); cy.get('.text-xl > .text-primary').should(
'have.text',
'Country, Regional and World GDP (Gross Domestic Product)'
);
}); });
}); });