Skip to content

Commit

Permalink
Fix security projects
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Oct 12, 2023
1 parent d887964 commit ce9be9b
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,18 @@ export default ({ getPageObject, getService }: FtrProviderContext) => {
await svlCommonPage.login();
await svlSecNavigation.navigateToLandingPage();
await testSubjects.click('solutionSideNavItemLink-cases');
await header.waitUntilLoadingHasFinished();

await retry.waitFor('configure-case-button exist', async () => {
return await testSubjects.exists('configure-case-button');
});

await common.clickAndValidate('configure-case-button', 'case-configure-title');
await header.waitUntilLoadingHasFinished();

await retry.waitFor('case-configure-title exist', async () => {
return await testSubjects.exists('case-configure-title');
});
});

after(async () => {
Expand All @@ -36,8 +46,6 @@ export default ({ getPageObject, getService }: FtrProviderContext) => {
});

describe('Closure options', function () {
// Error: Expected the radio group value to equal "close-by-pushing" (got "close-by-user")
this.tags(['failsOnMKI']);
it('defaults the closure option correctly', async () => {
await cases.common.assertRadioGroupValue('closure-options-radio-group', 'close-by-user');
});
Expand Down

0 comments on commit ce9be9b

Please sign in to comment.