diff --git a/cypress/integration/0-smoke-tests/docs-templates-start-page.cypress.js b/cypress/integration/0-smoke-tests/docs-templates-start-page.cypress.js new file mode 100644 index 0000000000..617ae8eac1 --- /dev/null +++ b/cypress/integration/0-smoke-tests/docs-templates-start-page.cypress.js @@ -0,0 +1,5 @@ +specify('index page', () => { + cy.visit('/docs/templates/start') + cy.get('a.govuk-button--start') + .should('contains.text', 'Start now') +})