Files
dozzle-monitor-container/assets/pages/Index.spec.js
2020-05-06 15:44:12 -07:00

10 lines
242 B
JavaScript

import { shallowMount } from "@vue/test-utils";
import Index from "./Index";
describe("<Index />", () => {
test("renders correctly", () => {
const wrapper = shallowMount(Index);
expect(wrapper.element).toMatchSnapshot();
});
});