import { MockMagentoContentBlock } from '@daffodil/content/driver/magento/testing'
class MockMagentoContentBlock implements MagentoContentBlock {
__typename: "CmsBlock" = <const>'CmsBlock'
identifier: faker.string.uuid() = faker.string.uuid()
title: faker.lorem.word() = faker.lorem.word()
content: faker.lorem.words(5) = faker.lorem.words(5)
}