diff options
Diffstat (limited to '.cypress/cypress/integration/bathnes.js')
-rw-r--r-- | .cypress/cypress/integration/bathnes.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.cypress/cypress/integration/bathnes.js b/.cypress/cypress/integration/bathnes.js new file mode 100644 index 000000000..29037fc00 --- /dev/null +++ b/.cypress/cypress/integration/bathnes.js @@ -0,0 +1,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'); + }); +}); |