aboutsummaryrefslogtreecommitdiffstats
path: root/.cypress/cypress/integration/bathnes.js
blob: 29037fc00658ba71a236d8a88f58e2ec39b9a477 (plain)
1
2
3
4
5
6
7
8
9
10
var cobrand = Cypress.env('cobrand');
var only_or_skip = (cobrand == 'bathnes') ? describe.only : describe.skip;

only_or_skip('Bath cobrand specific testing', function() {

    it('loads the right front page', function() {
        cy.visit('/');
        cy.contains('North East Somerset');
    });
});