Refactor films module

This commit is contained in:
2020-12-18 03:44:26 +01:00
parent f2de531fd9
commit f95a384409

View File

@@ -1,7 +1,7 @@
import { mount, shallowMount } from "@vue/test-utils";
import axios from "axios";
import FilmsView from "@/pages/films";
import mockFilms from "./fake-films.json";
import FilmsView from "./";
import mockFilms from "@/test/fake-films.json";
jest.mock("axios", () => ({
$get: jest.fn(() => mockFilms)