skip flaky test (#43938)

This commit is contained in:
spalger 2019-12-04 00:02:41 -07:00
parent 1dabc54329
commit a60b557c4d

View file

@ -99,7 +99,8 @@ export default function({ getService }: FtrProviderContext) {
.expect(401);
});
it('should succeed if both the OpenID Connect response and the cookie are provided', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/43938
it.skip('should succeed if both the OpenID Connect response and the cookie are provided', async () => {
const { idToken, accessToken } = createTokens('1', stateAndNonce.nonce);
const authenticationResponse = `https://kibana.com/api/security/v1/oidc/implicit#id_token=${idToken}&state=${stateAndNonce.state}&token_type=bearer&access_token=${accessToken}`;