removed CI references for e2e
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2022-05-13 18:29:20 +02:00
parent 39413c145d
commit 7bafc48d68
1 changed files with 0 additions and 21 deletions

View File

@ -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`,