[monorepo][lg] - start of monorepo
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
describe('Test Home Page', () => {
|
||||
beforeEach(() => {
|
||||
cy.visit('/');
|
||||
});
|
||||
|
||||
it('renders the hero title', () => {
|
||||
cy.contains('Find and Share');
|
||||
});
|
||||
|
||||
it('checks that a search form exists', () => {
|
||||
cy.get('form').contains('Search');
|
||||
});
|
||||
|
||||
// it('submits the search form', () => {
|
||||
// cy.get('form').find('[type="text"]').type('gdp');
|
||||
// cy.get('form').submit();
|
||||
// cy.url().should('include', '/search?q=gdp&sort=');
|
||||
// cy.get('.text-3xl').and('contain.text', '1 results found');
|
||||
// });
|
||||
|
||||
it('shows the recent datasets', () => {
|
||||
cy.contains('Recent Datasets');
|
||||
});
|
||||
|
||||
it('returns the expected number of recent datasets', () => {
|
||||
cy.get('.recent')
|
||||
.find('div')
|
||||
.should(($div) => {
|
||||
expect($div).to.have.length.of.at.least(2);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,21 +0,0 @@
|
||||
describe('Test Search Page', () => {
|
||||
beforeEach(() => {
|
||||
cy.visit('/search');
|
||||
});
|
||||
|
||||
it('has a search form', () => {
|
||||
cy.contains('form');
|
||||
cy.contains('Search');
|
||||
});
|
||||
|
||||
// it('should return a search result', () => {
|
||||
// cy.get('form').find('[type="text"]').type('gdp');
|
||||
// cy.get('form').submit();
|
||||
// cy.url().should('include', 'search?q=gdp&sort=');
|
||||
// cy.get('.text-3xl').should('have.text', '1 results found');
|
||||
// cy.get('.text-xl > .text-primary').should(
|
||||
// 'have.text',
|
||||
// 'Country, Regional and World GDP (Gross Domestic Product)'
|
||||
// );
|
||||
// });
|
||||
});
|
||||
Reference in New Issue
Block a user