-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
47 lines (46 loc) · 1.25 KB
/
sidebars.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
module.exports = {
docs: [
{
type: 'category',
label: 'Ng-apimock',
items: [
'installation',
'mocks',
'variables',
'presets',
'docker',
'debug'
]
},
{
type: 'category',
label: 'Plugins',
items: [
'plugins/plugin-introduction',
'plugins/dev-interface',
'plugins/protractor-plugin',
'plugins/wdio-ng-apimock-service',
'plugins/cypress-plugin',
'plugins/custom-plugin'
]
},
{
type: 'category',
label: 'API',
items: [
'api/select-scenario',
'api/delay-response',
'api/echo-request',
'api/set-variable',
'api/set-variables',
'api/delete-variable',
'api/create-preset',
'api/select-preset',
'api/reset-mocks-to-default',
'api/set-mocks-to-passThrough',
'api/record-requests',
'api/get-recordings'
]
}
]
};