revert rename

This commit is contained in:
Peter Holmberg
2018-09-27 14:45:36 +02:00
parent fede5e6c74
commit b899a0e1c1
9 changed files with 18 additions and 18 deletions

View File

@@ -1,13 +1,13 @@
import React from 'react';
import { shallow } from 'enzyme';
import { PluginListPage, Props } from './PluginListPage';
import { NavModel, PluginListItem } from '../../types';
import { NavModel, Plugin } from '../../types';
import { LayoutModes } from '../../core/components/LayoutSelector/LayoutSelector';
const setup = (propOverrides?: object) => {
const props: Props = {
navModel: {} as NavModel,
plugins: [] as PluginListItem[],
plugins: [] as Plugin[],
layoutMode: LayoutModes.Grid,
loadPlugins: jest.fn(),
};