mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Unskip test (#141027)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
a71f9652d8
commit
7026b57eb9
1 changed files with 8 additions and 4 deletions
|
@ -30,27 +30,31 @@ import { login, visit } from '../../tasks/login';
|
|||
|
||||
import { ALERTS_URL } from '../../urls/navigation';
|
||||
|
||||
describe.skip('Enrichment', () => {
|
||||
describe('Enrichment', () => {
|
||||
before(() => {
|
||||
cleanKibana();
|
||||
esArchiverLoad('risky_hosts');
|
||||
esArchiverLoad('risky_users');
|
||||
login();
|
||||
});
|
||||
|
||||
after(() => {
|
||||
esArchiverUnload('risky_hosts');
|
||||
esArchiverUnload('risky_users');
|
||||
esArchiverUnload('risky_hosts_updated');
|
||||
});
|
||||
|
||||
describe('Custom query rule', () => {
|
||||
beforeEach(() => {
|
||||
esArchiverLoad('risky_hosts');
|
||||
deleteAlertsAndRules();
|
||||
createCustomRuleEnabled(getNewRule(), 'rule1');
|
||||
visit(ALERTS_URL);
|
||||
waitForAlertsToPopulate();
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
esArchiverUnload('risky_hosts');
|
||||
esArchiverUnload('risky_hosts_updated');
|
||||
});
|
||||
|
||||
it('Should has enrichment fields', function () {
|
||||
cy.get(NUMBER_OF_ALERTS)
|
||||
.invoke('text')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue