Remove unnecessary test from photo model test

This commit is contained in:
Theresa Gresch 2019-08-09 16:03:14 +02:00
parent 3f36652e57
commit a438ab73c5

View File

@ -1,5 +1,14 @@
import assert from "assert";
import Photo from "model/photo";
import MockAdapter from "axios-mock-adapter";
import Api from "common/api";
const mock = new MockAdapter(Api);
mock
.onPost().reply(200)
.onDelete().reply(200);
describe("model/photo", () => {
it("should get photo entity name", () => {