Skip to content

Commit

Permalink
removes skips (#51206)
Browse files Browse the repository at this point in the history
  • Loading branch information
MadameSheema authored Nov 20, 2019
1 parent d61cef4 commit 093121f
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('ml conditional links', () => {
return logout();
});

it.skip('sets the KQL from a single IP with a value for the query', () => {
it('sets the KQL from a single IP with a value for the query', () => {
loginAndWaitForPage(mlNetworkSingleIpKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -37,7 +37,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a multiple IPs with a null for the query', () => {
it('sets the KQL from a multiple IPs with a null for the query', () => {
loginAndWaitForPage(mlNetworkMultipleIpNullKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -46,7 +46,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a multiple IPs with a value for the query', () => {
it('sets the KQL from a multiple IPs with a value for the query', () => {
loginAndWaitForPage(mlNetworkMultipleIpKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -55,7 +55,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a $ip$ with a value for the query', () => {
it('sets the KQL from a $ip$ with a value for the query', () => {
loginAndWaitForPage(mlNetworkKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -64,7 +64,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a single host name with a value for query', () => {
it('sets the KQL from a single host name with a value for query', () => {
loginAndWaitForPage(mlHostSingleHostKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -73,7 +73,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a multiple host names with null for query', () => {
it('sets the KQL from a multiple host names with null for query', () => {
loginAndWaitForPage(mlHostMultiHostNullKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -82,7 +82,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a multiple host names with a value for query', () => {
it('sets the KQL from a multiple host names with a value for query', () => {
loginAndWaitForPage(mlHostMultiHostKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -91,7 +91,7 @@ describe('ml conditional links', () => {
);
});

it.skip('sets the KQL from a undefined/null host name but with a value for query', () => {
it('sets the KQL from a undefined/null host name but with a value for query', () => {
loginAndWaitForPage(mlHostVariableHostKqlQuery);
cy.get(KQL_INPUT, { timeout: 5000 }).should(
'have.attr',
Expand All @@ -100,23 +100,23 @@ describe('ml conditional links', () => {
);
});

it.skip('redirects from a single IP with a null for the query', () => {
it('redirects from a single IP with a null for the query', () => {
loginAndWaitForPage(mlNetworkSingleIpNullKqlQuery);
cy.url().should(
'include',
'/app/siem#/network/ip/127.0.0.1?_g=()&timerange=(global:(linkTo:!(timeline),timerange:(from:1566990000000,kind:absolute,to:1567000799999)),timeline:(linkTo:!(global),timerange:(from:1566990000000,kind:absolute,to:1567000799999)))'
);
});

it.skip('redirects from a single IP with a value for the query', () => {
it('redirects from a single IP with a value for the query', () => {
loginAndWaitForPage(mlNetworkSingleIpKqlQuery);
cy.url().should(
'include',
"/app/siem#/network/ip/127.0.0.1?_g=()&query=(language:kuery,query:'(process.name:%20%22conhost.exe%22%20or%20process.name:%20%22sc.exe%22)')&timerange=(global:(linkTo:!(timeline),timerange:(from:1566990000000,kind:absolute,to:1567000799999)),timeline:(linkTo:!(global),timerange:(from:1566990000000,kind:absolute,to:1567000799999)))"
);
});

it.skip('redirects from a multiple IPs with a null for the query', () => {
it('redirects from a multiple IPs with a null for the query', () => {
loginAndWaitForPage(mlNetworkMultipleIpNullKqlQuery);
cy.url().should(
'include',
Expand Down

0 comments on commit 093121f

Please sign in to comment.