diff --git a/e2e/helpers/tests.js b/e2e/helpers/tests.js index d1429c94d..aac9963dd 100644 --- a/e2e/helpers/tests.js +++ b/e2e/helpers/tests.js @@ -14,14 +14,9 @@ process.on('warning', warning => { }); async function test() { - let isCI = false; - if (process.argv[2] === 'show') process.env.E2E_SHOW = true; - if (process.argv[2] === 'ci') - isCI = true; - const container = new Docker('salix-db'); await container.run(); @@ -29,22 +24,6 @@ async function test() { const Jasmine = require('jasmine'); const jasmine = new Jasmine(); - const SpecReporter = require('jasmine-spec-reporter').SpecReporter; - jasmine.addReporter(new SpecReporter({ - spec: { - displaySuccessful: isCI, - displayPending: isCI - }, - summary: { - displayPending: false, - } - })); - - if (isCI) { - const JunitReporter = require('jasmine-reporters'); - jasmine.addReporter(new JunitReporter.JUnitXmlReporter()); - } - const specFiles = [ `./e2e/paths/01*/*[sS]pec.js`, `./e2e/paths/02*/*[sS]pec.js`,