mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Security] Ftr API Integration tests (#182626)
## Summary
[Try catch
statement](9473241cf8/.buildkite/scripts/pipelines/security_solution_quality_gate/api_integration/api_ftr_execution.ts (L144)
)
in the PR for the [API Ftr Integration
tests](https://github.com/elastic/kibana/pull/182245), introduced a
cover above the target fix of the specific PR.
The tests were failing however the exit code was still 0 so the failures
are hidden. This PR addresses the specific issue.
This commit is contained in:
parent
98f809ec47
commit
130329510e
1 changed files with 2 additions and 1 deletions
|
@ -143,7 +143,8 @@ export const cli = () => {
|
|||
statusCode = await executeCommand(command, envVars, workDir);
|
||||
} catch (err) {
|
||||
log.error('An error occured when running the test script.');
|
||||
log.error(err);
|
||||
log.error(err.message);
|
||||
statusCode = 1;
|
||||
} finally {
|
||||
// Delete serverless project
|
||||
log.info(`${id} : Deleting project ${PROJECT_NAME}...`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue