Skip to content

Commit

Permalink
[7.x] [Telemetry Management Section] Lazy-load security payload (#79854
Browse files Browse the repository at this point in the history
…) (#82323)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
afharo and kibanamachine authored Nov 3, 2020
1 parent 97f6f0c commit 943d9ca
Show file tree
Hide file tree
Showing 7 changed files with 327 additions and 289 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
import { shallowWithIntl } from 'test_utils/enzyme_helpers';
import ExampleSecurityPayload from './example_security_payload';

describe('example security payload', () => {
it('renders as expected', () => {
expect(shallowWithIntl(<ExampleSecurityPayload />)).toMatchSnapshot();
});
});
Loading

0 comments on commit 943d9ca

Please sign in to comment.