import * as React from "react";
import { mount } from "enzyme";
import Dashboard from "src/components/HomePage/Dashboard/Dashboard";
import { BrowserRouter as Router } from "react-router-dom";
import { NetworkContext } from "src/services/network/networkProvider";
describe("Isolated Server ", () => {
const dashboard = mount(
);
it("matches snapshot", () => {
expect(dashboard).toMatchSnapshot();
});
});
describe("Non-Isolated Server ", () => {
const dashboard = mount(
);
it("matches snapshot", () => {
expect(dashboard).toMatchSnapshot();
});
});