rickvanlieshout.com/jest/__fixtures__/markdown-remark.js
2019-05-10 02:15:43 +03:00

24 lines
346 B
JavaScript

'use strict';
module.exports = {
markdownRemark: {
id: 'test-123',
html: '<p>test</p>',
fields: {
tagSlugs: [
'/test_0',
'/test_1'
]
},
frontmatter: {
date: '2016-09-01',
description: 'test',
title: 'test',
tags: [
'test_0',
'test_1'
]
}
}
};