From 086d6a8728384c57bf0b36232fb9cc4759142d56 Mon Sep 17 00:00:00 2001 From: Kevin Dew Date: Mon, 9 Oct 2017 14:37:11 +0100 Subject: [PATCH] Run Publishing E2E Tests as part of a build This change will cause [Publishing End-to-end Tests][e2e-tests] to run once the initial unit tests for this build has passed and will be triggered as a dependent build. These are used to test that none of the changes made in a commit to this repo don't break the tech stack or break the end-to-end tests environment. The End-to-end tests take approximately 4/5 minutes to run and will make it slower to get a passing build. [e2e-tests]: https://github.com/alphagov/publishing-e2e-tests --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 35979734e..38fde8844 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,5 +19,6 @@ node { govuk.runTests("spec:javascript") } }, + publishingE2ETests: true, ) }