mirror of
https://github.com/apache/superset.git
synced 2026-04-18 15:44:57 +00:00
feat: adding dashboard toggle fullscreen button (#10840)
This commit is contained in:
@@ -66,9 +66,9 @@ describe('HeaderActionsDropdown', () => {
|
||||
expect(wrapper.find(SaveModal)).not.toExist();
|
||||
});
|
||||
|
||||
it('should render two MenuItems', () => {
|
||||
it('should render four MenuItems', () => {
|
||||
const wrapper = setup(overrideProps);
|
||||
expect(wrapper.find(MenuItem)).toHaveLength(3);
|
||||
expect(wrapper.find(MenuItem)).toHaveLength(4);
|
||||
});
|
||||
|
||||
it('should render the RefreshIntervalModal', () => {
|
||||
@@ -100,9 +100,9 @@ describe('HeaderActionsDropdown', () => {
|
||||
expect(wrapper.find(SaveModal)).toExist();
|
||||
});
|
||||
|
||||
it('should render three MenuItems', () => {
|
||||
it('should render four MenuItems', () => {
|
||||
const wrapper = setup(overrideProps);
|
||||
expect(wrapper.find(MenuItem)).toHaveLength(3);
|
||||
expect(wrapper.find(MenuItem)).toHaveLength(4);
|
||||
});
|
||||
|
||||
it('should render the RefreshIntervalModal', () => {
|
||||
|
||||
Reference in New Issue
Block a user