diff --git a/core/test/utils/fixtures/data-generator.js b/core/test/utils/fixtures/data-generator.js index a7776848da..7770f10a6d 100644 --- a/core/test/utils/fixtures/data-generator.js +++ b/core/test/utils/fixtures/data-generator.js @@ -75,6 +75,7 @@ DataGenerator.Content = { slug: 'static-page-test', mobiledoc: DataGenerator.markdownToMobiledoc('

Static page test is what this is for.

Hopefully you don\'t find it a bore.

'), page: true + type: 'page' }, { id: ObjectId.generate(), @@ -82,6 +83,7 @@ DataGenerator.Content = { slug: 'static-page-draft', mobiledoc: DataGenerator.markdownToMobiledoc('

Static page test is what this is for.

Hopefully you don\'t find it a bore.

'), page: true, + type: 'page', status: 'draft' }, { @@ -469,6 +471,7 @@ DataGenerator.forKnex = (function () { feature_image: null, featured: false, page: false, + type: 'post', slug: 'slug', author_id: DataGenerator.Content.users[0].id, updated_at: new Date(),