From 27ba418fef670690a47c9ecca402a356ab2d7445 Mon Sep 17 00:00:00 2001 From: Aleh Zasypkin Date: Fri, 2 Oct 2020 19:32:09 +0200 Subject: [PATCH] Properly include SAML tests into test run. --- x-pack/test/security_api_integration/tests/saml/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x-pack/test/security_api_integration/tests/saml/index.ts b/x-pack/test/security_api_integration/tests/saml/index.ts index d80bf31774ba3..882c8774e54e6 100644 --- a/x-pack/test/security_api_integration/tests/saml/index.ts +++ b/x-pack/test/security_api_integration/tests/saml/index.ts @@ -7,7 +7,9 @@ import { FtrProviderContext } from '../../ftr_provider_context'; export default function ({ loadTestFile }: FtrProviderContext) { - describe('security APIs - SAML', () => { + describe('security APIs - SAML', function () { + this.tags('ciGroup6'); + loadTestFile(require.resolve('./saml_login')); }); }