GitHub

MockMagentoCmsPage

class

import { MockMagentoCmsPage } from '@daffodil/content/driver/magento/testing'

class MockMagentoCmsPage implements MagentoCmsPage {
  __typename: "CmsPage" = <const>'CmsPage'
  type: "CMS_PAGE" = <const>'CMS_PAGE'
  identifier: faker.string.uuid() = faker.string.uuid()
  title: faker.lorem.word() = faker.lorem.word()
  content: faker.lorem.words(5) = faker.lorem.words(5)
  meta_title: faker.lorem.word() = faker.lorem.word()
  meta_description: faker.lorem.words(5) = faker.lorem.words(5)
}