removed CI references for e2e
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
39413c145d
commit
7bafc48d68
|
@ -14,14 +14,9 @@ process.on('warning', warning => {
|
||||||
});
|
});
|
||||||
|
|
||||||
async function test() {
|
async function test() {
|
||||||
let isCI = false;
|
|
||||||
|
|
||||||
if (process.argv[2] === 'show')
|
if (process.argv[2] === 'show')
|
||||||
process.env.E2E_SHOW = true;
|
process.env.E2E_SHOW = true;
|
||||||
|
|
||||||
if (process.argv[2] === 'ci')
|
|
||||||
isCI = true;
|
|
||||||
|
|
||||||
const container = new Docker('salix-db');
|
const container = new Docker('salix-db');
|
||||||
|
|
||||||
await container.run();
|
await container.run();
|
||||||
|
@ -29,22 +24,6 @@ async function test() {
|
||||||
const Jasmine = require('jasmine');
|
const Jasmine = require('jasmine');
|
||||||
const jasmine = new 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 = [
|
const specFiles = [
|
||||||
`./e2e/paths/01*/*[sS]pec.js`,
|
`./e2e/paths/01*/*[sS]pec.js`,
|
||||||
`./e2e/paths/02*/*[sS]pec.js`,
|
`./e2e/paths/02*/*[sS]pec.js`,
|
||||||
|
|
Loading…
Reference in New Issue