Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip only Risk Engine initializing test with a FIPS issue #195651

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ export default ({ getService }: FtrProviderContext) => {
const riskEngineRoutes = riskEngineRouteHelpersFactory(supertest);
const log = getService('log');

// Failing: See https://github.com/elastic/kibana/issues/191637
describe.skip('@ess @serverless @serverlessQA init_and_status_apis', () => {
describe('@ess @serverless @serverlessQA init_and_status_apis', () => {
before(async () => {
await riskEngineRoutes.cleanUp();
});
Expand Down Expand Up @@ -298,8 +297,8 @@ export default ({ getService }: FtrProviderContext) => {
firstResponse?.saved_objects?.[0]?.id
);
});

describe('remove legacy risk score transform', function () {
// Failing: See https://github.com/elastic/kibana/issues/191637
describe.skip('remove legacy risk score transform', function () {
this.tags('skipFIPS');
it('should remove legacy risk score transform if it exists', async () => {
await installLegacyRiskScore({ supertest });
Expand Down