-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
124 lines (122 loc) · 3.88 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'doc',
id: 'intro', // maps to docs/intro.md
label: 'Introduction to QIT',
},
{
type: 'category',
label: 'Core Concepts',
collapsed: true,
items: [
'core-concepts/how-qit-works',
'core-concepts/test-types-overview',
'core-concepts/marketplace-overview',
],
},
{
type: 'category',
label: 'Installation & Setup',
collapsed: true,
items: [
'installation-setup/cli-installation',
'installation-setup/authenticating',
'installation-setup/local-env-setup',
],
},
{
type: 'category',
label: 'Using QIT',
collapsed: true,
items: [
'using-qit/running-tests-cli',
'using-qit/running-tests-dashboard',
'using-qit/github-workflows',
'using-qit/notifications-results',
],
},
{
type: 'category',
label: 'Managed Tests',
collapsed: true,
items: [
'managed-tests/introduction',
'managed-tests/activation',
'managed-tests/woo-e2e',
'managed-tests/woo-api',
'managed-tests/security',
'managed-tests/phpcompatibility',
'managed-tests/phpstan',
'managed-tests/malware',
'managed-tests/validation',
'managed-tests/plugin-check',
],
},
{
type: 'category',
label: 'Custom E2E Tests',
collapsed: true,
items: [
'custom-tests/introduction',
'custom-tests/generating-tests',
'custom-tests/tagging-tests',
'custom-tests/running-tests',
'custom-tests/downloading-extensions-and-tests',
'custom-tests/understanding-lifecycle',
'custom-tests/orchestration',
'custom-tests/compatibility-tests',
'custom-tests/themes',
'custom-tests/security-architecture',
'custom-tests/qit-helpers',
],
},
{
type: 'category',
label: 'Environment & Configuration',
collapsed: true,
items: [
'environment/introduction',
'environment/creating-config-files',
'environment/installing-plugins-and-themes',
'environment/installing-from-other-sources',
'environment/tunnel',
'environment/persistent-tunnel',
'environment/custom-tunnel',
'environment/environment-variables',
],
},
{
type: 'category',
label: 'Test Execution & Reporting',
collapsed: true,
items: [
'test-execution/useful-commands',
'test-execution/viewing-allure-reports',
'test-execution/troubleshooting',
],
},
{
type: 'category',
label: 'Advanced Usage',
collapsed: true,
items: [
'advanced-usage/scripting',
'advanced-usage/advanced-config-handlers',
],
},
{
type: 'category',
label: 'Support & Resources',
collapsed: true,
items: [
'support/contact-us',
'support/test-options',
'support/faqs',
],
},
],
};
export default sidebars;