All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.modules.campaign.components.execution.detail.campaign-execution.component.html Maven / Gradle / Ivy

The newest version!


@if (errors.length > 0) {
  
@for (err of errors; track $index) { {{ err }}
}
} @if (report) {
@if (!report.isRunning()) { ( @if (report.hasPassed()) { {{ report.passed }} {{ 'campaigns.execution.last.ok' | translate }}, } @if (report.hasFailed()) { {{ report.failed }} {{ 'campaigns.execution.last.ko' | translate }}, } @if (report.hasStopped()) { {{ report.stopped }} {{ 'campaigns.execution.last.stop' | translate }}, } @if (report.hasNotExecuted()) { {{ report.notexecuted }} {{ 'campaigns.execution.last.notexecuted' | translate }} } {{ 'global.smallword.of' | translate }} {{ report.total }} ) {{ 'global.time.in' | translate }} {{ report.report.duration | duration }} } {{ 'global.time.at' | translate }} {{ report.report.startDate | amDateFormat: 'DD MMM. YYYY HH:mm' }} {{ report.report.user == '' ? '' : 'global.smallword.by' | translate }} {{ report.report.user }} {{ 'campaigns.execution.on_env' | translate }} {{ report.report.executionEnvironment }} @if (jiraUrl && jiraTestExecutionId) { ( {{ jiraTestExecutionId }} ) } @if (!report.isRunning()) {
@if (report.hasFailed() || report.hasStopped()) { }
} @if (report.isRunning()) {
}
@if (jiraTestExecutionId) { } @if (jiraTestExecutionId) { } @for (scenarioReportOutline of report.report.scenarioExecutionReports; track $index; let i = $index) { @if (jiraTestExecutionId) { } @if (jiraTestExecutionId) { } }
{{ 'campaigns.execution.scenarios.item.header.id' | translate }} @if (orderBy == 'scenarioId' && reverseOrder) { } @if (orderBy == 'scenarioId' && !reverseOrder) { } {{ 'campaigns.execution.scenarios.item.header.state' | translate }} @if (orderBy == 'status' && reverseOrder) { } @if (orderBy == 'status' && !reverseOrder) { } {{ 'campaigns.execution.scenarios.item.header.title' | translate }} @if (orderBy == 'scenarioName' && reverseOrder) { } @if (orderBy == 'scenarioName' && !reverseOrder) { } {{ 'campaigns.execution.scenarios.item.header.error' | translate }} @if (orderBy == 'error' && reverseOrder) { } @if (orderBy == 'error' && !reverseOrder) { } {{ 'campaigns.execution.scenarios.item.header.tags' | translate }} {{ 'campaigns.execution.scenarios.item.header.dataset' | translate }} {{ 'campaigns.execution.scenarios.item.header.duration' | translate }} @if (orderBy == 'duration' && reverseOrder) { } @if (orderBy == 'duration' && !reverseOrder) { } {{ 'campaigns.execution.scenarios.item.header.jiraStatus' | translate }}
{{ scenarioReportOutline.scenarioId }} {{ scenarioReportOutline.scenarioName }} {{ scenarioReportOutline.scenarioName }} {{ (!showMore[i] && scenarioReportOutline.error.length > 100) ? (scenarioReportOutline.error | slice:0:100) + " ..." : (scenarioReportOutline.error) }} @if (scenarioReportOutline.tags && scenarioReportOutline.tags.length <= 3) { @for (tag of scenarioReportOutline.tags; track $index) { {{tag}} } } @if (scenarioReportOutline.tags && scenarioReportOutline.tags.length > 3) { @for (tag of scenarioReportOutline.tags | slice:0:2; track tag) { {{tag}} } } {{ getDataset(scenarioReportOutline) }} {{ scenarioReportOutline.duration | duration:'short' }} @if (jiraLinkFrom(scenarioReportOutline.scenarioId) !== null) { } @if (jiraLinkFrom(scenarioReportOutline.scenarioId) !== null) { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy