rickvanlieshout.com/jest/__fixtures__/markdown-remark.js

24 lines
346 B
JavaScript
Raw Normal View History

2019-05-09 15:37:54 +02:00
'use strict';
module.exports = {
markdownRemark: {
2019-05-10 01:15:43 +02:00
id: 'test-123',
2019-05-09 15:37:54 +02:00
html: '<p>test</p>',
fields: {
tagSlugs: [
'/test_0',
'/test_1'
]
},
frontmatter: {
date: '2016-09-01',
description: 'test',
title: 'test',
tags: [
'test_0',
'test_1'
]
}
}
};