forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.js
96 lines (84 loc) · 2.41 KB
/
book.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
var pkg = require('./package.json'),
repoUrl = 'https://github.com/jan-molak/serenity-js';
module.exports = {
// Documentation for GitBook is stored under 'docs'
root: './book',
title: 'Serenity/JS Handbook',
description: 'A comprehensive reference manual and tutorials for Serenity/JS, a next generation automated testing library',
author: 'Jan Molak',
plugins: [
'anchors',
'advanced-emoji',
'editlink',
'include-codeblock',
'ga',
'github',
'rss',
'sitemap',
'styles-less',
'youtube'
],
variables: {
package: pkg,
api_version: pkg.version
},
styles: {
website: './styles/website.less'
},
custom: {
},
pluginsConfig: {
editlink: {
base: repoUrl + '/edit/master/book',
label: 'Edit on github',
multilingual: false
},
ga: {
token: 'UA-85788349-2'
},
github: {
url: repoUrl
},
sharing: {
twitter: true,
google: true,
facebook: true,
weibo: false,
instapaper: false,
vk: false,
all: [
'facebook', 'google', 'twitter',
'weibo', 'instapaper', 'vk'
]
},
sitemap: {
hostname: 'http://serenity-js.org/'
},
rss: {
title: 'Serenity/JS Handbook',
description: 'A comprehensive reference manual and tutorials for Serenity/JS, a next generation automated testing library.',
author: 'Jan Molak',
site_url: 'http://serenity-js.org/',
feed_url: 'http://serenity-js.org/updates.rss',
image_url: 'http://serenity-js.org/assets/images/serenity-js-eye.svg',
managingEditor: '[email protected] (Jan Molak)',
webMaster: '[email protected] (Jan Molak)',
categories: [
"book",
"manual",
"tutorial",
"bdd",
"tdd",
"testing",
"protractor",
"mocha",
"cucumber",
"angular",
"bdd",
"selenium",
"webdriverjs",
"webdriver"
]
}
}
};