Skip to content
Snippets Groups Projects
Commit 614dd0b7 authored by Kalpit Kothari's avatar Kalpit Kothari
Browse files

Add tests for layout

parent 9a553f66
No related branches found
No related tags found
1 merge request!135Add tests for layout
/**
* Copyright (C) 2019 The Software Heritage developers
* See the AUTHORS file at the top-level directory of this distribution
* License: GNU Affero General Public License version 3, or any later version
* See top-level LICENSE file for more information
*/
const url = '/';
describe('Test top-bar', function() {
it('should should contain all navigation links', function() {
cy.visit(url);
cy.get('.swh-top-bar > ul > li > a')
.should('have.length', 5)
.and('be.visible')
.and('have.attr', 'href');
});
it('should show donate button on lg screen', function() {
cy.visit(url);
cy.get('.swh-donate-link')
.should('be.visible');
});
it('should hide donate button on sm screen', function() {
cy.viewport(600, 800);
cy.visit(url);
cy.get('.swh-donate-link')
.should('not.be.visible');
});
});
describe('Test footer', function() {
beforeEach(function() {
cy.visit(url);
});
it('should be visible', function() {
cy.get('footer')
.should('be.visible');
});
it('should have correct copyright years', function() {
const currentYear = new Date().getFullYear();
const copyrightText = '(C) 2015–' + currentYear.toString();
cy.get('footer')
.should('contain', copyrightText);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment