mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
* Unskip and add debug
* try this
* lets fail
* this?
* add another
* Add more
* Try this
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit fe76adbc3a
)
This commit is contained in:
parent
7131e30608
commit
d4427fadd6
2 changed files with 2 additions and 3 deletions
|
@ -79,12 +79,11 @@ export const BSecureSearchFactory = (retry: RetryService) => ({
|
|||
.set('kbn-xsrf', 'true')
|
||||
.send(options);
|
||||
}
|
||||
if (result.status === 500 || result.status === 200) {
|
||||
if ((result.status === 500 || result.status === 200) && result.body) {
|
||||
return result;
|
||||
}
|
||||
throw new Error('try again');
|
||||
});
|
||||
|
||||
if (body.isRunning) {
|
||||
const result = await retry.try(async () => {
|
||||
const resp = await supertestWithoutAuth
|
||||
|
|
|
@ -43,7 +43,7 @@ export default ({ getService }: FtrProviderContext) => {
|
|||
const SPACE1 = 'space1';
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/129219
|
||||
describe.skip('ruleRegistryAlertsSearchStrategy', () => {
|
||||
describe('ruleRegistryAlertsSearchStrategy', () => {
|
||||
let kibanaVersion: string;
|
||||
before(async () => {
|
||||
kibanaVersion = await kbnClient.version.get();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue