Revert "[webpack] setup lazy loading for all visualizations" (#5219)

* Revert "[explore] fix autocomplete on verbose names (#5204)"

This reverts commit d5ebc430c2.

* Revert "[webpack] setup lazy loading for all visualizations (#4727)"

This reverts commit de0aaf42ed.
This commit is contained in:
Chris Williams
2018-06-15 17:23:57 -07:00
committed by John Bodley
parent d5ebc430c2
commit 7b49b6c2de
20 changed files with 2551 additions and 1530 deletions

View File

@@ -38,10 +38,10 @@ describe('Chart', () => {
<Chart {...mockedProps} />,
);
});
describe('renderVis', () => {
describe('renderViz', () => {
let stub;
beforeEach(() => {
stub = sinon.stub(wrapper.instance(), 'renderVis');
stub = sinon.stub(wrapper.instance(), 'renderViz');
});
afterEach(() => {
stub.restore();