Skip to content

Commit

Permalink
[Multiple Datasource Test]add more test for icon and aggregated view (#…
Browse files Browse the repository at this point in the history
…6729) (#6740)

* add more test for icon and aggregated view



* Changeset file for PR #6729 created/updated

* Update CHANGELOG.md

---------



(cherry picked from commit 60f9d05)

Signed-off-by: yujin-emma <yujin.emma.work@gmail.com>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed May 8, 2024
1 parent 5008e77 commit 3eab14f
Show file tree
Hide file tree
Showing 7 changed files with 1,278 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/6729.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fix:
- Add more test for icon and aggregated view ([#6729](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/6729))

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,15 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

import { shallow } from 'enzyme';
import React from 'react';
import { EmptyIcon } from './empty_icon';

describe('Test on empty icon', () => {
it('should render the component normally', () => {
const component = shallow(<EmptyIcon />);
expect(component).toMatchSnapshot();
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

import { shallow } from 'enzyme';
import React from 'react';
import { ErrorIcon } from './error_icon';

describe('Test on empty icon', () => {
it('should render the component normally', () => {
const component = shallow(<ErrorIcon />);
expect(component).toMatchSnapshot();
});
});
Loading

0 comments on commit 3eab14f

Please sign in to comment.