mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
[dashboard] remove loading spinner in missing chart holder (#9140)
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
import React from 'react';
|
||||
import { shallow } from 'enzyme';
|
||||
|
||||
import Loading from '../../../../src/components/Loading';
|
||||
import MissingChart from '../../../../src/dashboard/components/MissingChart';
|
||||
|
||||
describe('MissingChart', () => {
|
||||
@@ -37,9 +36,4 @@ describe('MissingChart', () => {
|
||||
const wrapper = setup();
|
||||
expect(wrapper.find('.missing-chart-body')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('renders a Loading', () => {
|
||||
const wrapper = setup();
|
||||
expect(wrapper.find(Loading)).toHaveLength(1);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user