12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import * as React from 'react';
|
|
import App from '../src/App';
|
|
import {shallow} from "enzyme";
|
|
import Dashboard from "../src/components/Dashboard";
|
|
|
|
describe("App", () => {
|
|
it("renders dashboard", () => {
|
|
// const component = shallow(<App/>);
|
|
// expect(component.find("Dashboard")).toHaveLength(1);
|
|
})
|
|
});
|