[dashboard] remove loading spinner in missing chart holder (#9140)

This commit is contained in:
Grace Guo
2020-02-14 09:01:47 -08:00
committed by GitHub
parent f993bdc7ef
commit b0110a74e7
3 changed files with 2 additions and 15 deletions

View File

@@ -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);
});
});