Add tests for album model

This commit is contained in:
Theresa Gresch 2019-08-09 13:43:29 +02:00
parent 5bd0ffa56c
commit e7a1fa45b0

View file

@ -10,7 +10,7 @@ const postLikeEntity = [
]; ];
mock.onPost("foo").reply(201, postLikeEntity); mock.onPost("foo").reply(201, postLikeEntity);
describe.only("model/album", () => { describe("model/album", () => {
it("should get album entity name", () => { it("should get album entity name", () => {
const values = {id: 5, AlbumName: "Christmas 2019", AlbumSlug: "christmas-2019"}; const values = {id: 5, AlbumName: "Christmas 2019", AlbumSlug: "christmas-2019"};
const album = new Album(values); const album = new Album(values);