зеркало из
1
0
Форкнуть 0
This commit is contained in:
ljoy913 2022-01-25 18:08:57 -08:00
Родитель 75aa65ea1e
Коммит ceb9d360dc
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -7,5 +7,5 @@ module.exports = {
coverageProvider: "v8",
testEnvironment: "jsdom",
preset: "ts-jest",
testTimeout: 10000
testTimeout: 15000
};

Просмотреть файл

@ -42,7 +42,12 @@ async function runValidatorJRE(artifactPath: string): Promise<CommandResult | nu
fs.copyFileSync(`./${validatorJarFile}`, tempJarFile);
const result: CommandResult = await runCommand(`java -jar ./${tempJarFile} ./${artifactPath}`, `Running HL7 FHIR validator with JRE`, log);
let result: CommandResult = await runCommand(`java -jar ./${tempJarFile} ./${artifactPath}`, `Running HL7 FHIR validator with JRE`, log);
if (result.exitCode) {
result = await runCommand(`java -jar ./${tempJarFile} ./${artifactPath}`, `Running HL7 FHIR validator with JRE`, log);
}
fs.rmSync(tempJarFile);