Create Location component + tests

This commit is contained in:
2020-12-21 22:43:29 +01:00
parent cf9381309e
commit c3bb17f863
6 changed files with 472 additions and 8 deletions

View File

@@ -0,0 +1,30 @@
import { mount, RouterLinkStub } from "@vue/test-utils";
import Location from "./";
import mockLocation from "@/test/fake-locations.json";
describe("Location", () => {
it("tests props", () => {
expect(Location.props).toMatchObject({
location: {
type: Object,
default: {},
required: true
}
});
});
it("renders proper link to details", () => {
const wrapper = mount(Location, {
propsData: {
location: mockLocation[0]
},
stubs: {
RouterLink: RouterLinkStub
}
});
expect(wrapper.findComponent(RouterLinkStub).props().to).toBe(
`/locations/${mockLocation[0].id}`
);
});
});