Create first tests of TopBar component
This commit is contained in:
10
src/components/TopBar/__tests__/TopBar.spec.ts
Normal file
10
src/components/TopBar/__tests__/TopBar.spec.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* eslint-disable no-undef */
|
||||
import { shallowMount } from "@vue/test-utils";
|
||||
import TopBar from "../TopBar.vue";
|
||||
|
||||
describe("TopBar.vue", () => {
|
||||
it("render component when called", () => {
|
||||
const wrapper = shallowMount(TopBar);
|
||||
expect(wrapper).toBeCalled();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user