Skip to content

Commit

Permalink
Add profile tree test to git index
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Oct 21, 2019
1 parent e1da3ca commit 0cae751
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/

import { registerTestBed } from '../../../../../../../../../test_utils';
import { searchResponse } from './fixtures/search_response';
import { ProfileTree, Props } from '../profile_tree';

describe('ProfileTree', () => {
it('renders', async () => {
const props: Props = {
target: 'searches',
data: searchResponse,
};
const init = registerTestBed(ProfileTree);
await init(props);
});
});

0 comments on commit 0cae751

Please sign in to comment.