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

42 lines
791 B
JavaScript

'use strict';
module.exports = {
site: {
siteMetadata: {
url: 'http://localhost',
title: 'Test title',
subtitle: 'Test subtitle',
copyright: 'Test copyright',
disqusShortname: '',
postsPerPage: 4,
menu: [
{
label: 'Test label 1',
path: '/test/1/'
},
{
label: 'Test label 2',
path: '/test/2/'
},
{
label: 'Test label 3',
path: '/test/3/'
}
],
author: {
name: 'Test name',
photo: '/test.jpg',
bio: 'Test bio',
contacts: {
email: '#',
telegram: '#',
twitter: '#',
github: '#',
rss: '#',
vkontakte: '#'
}
}
}
}
};