renamed junit reporters constant
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2022-05-13 12:35:39 +02:00
parent 42270bf61b
commit fa55263516
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ async function test() {
}));
if (isCI) {
const reporters = require('jasmine-reporters');
reporters.push(new reporters.JUnitXmlReporter());
const junitReporter = require('jasmine-reporters');
reporters.push(new junitReporter.JUnitXmlReporter());
}
const Jasmine = require('jasmine');