rickvanlieshout.com/jest/__fixtures__/markdown-remark.js
2019-05-09 16:37:54 +03:00

23 lines
326 B
JavaScript

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