-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathtest-config.js
More file actions
52 lines (52 loc) · 1.66 KB
/
test-config.js
File metadata and controls
52 lines (52 loc) · 1.66 KB
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
export default {
include: [
{
name: "cdn-example",
command: 'cd ../cdn-example && npm run start',
},
{
name: "external-plugin-dynamic-content",
command: 'cd ../external-plugin-dynamic-content && npm install && npm run dev',
},
{
name: "next-js-ssr",
command: 'cd ../next-js-ssr && npm install && npm run dev',
},
{
name: "programmatic-text-selection",
command: 'cd ../programmatic-text-selection && npm install && npm run dev',
},
{
name: "react-example",
command: 'cd ../react-example && npm install && npm run dev',
},
{
name: "typescript-example",
command: 'cd ../typescript-example && npm install && npm run dev',
},
{
name: "vanilla-example",
command: 'cd ../vanilla-example && npm install && npm run dev',
},
{
name: "vue-custom-mark",
command: 'cd ../vue-custom-mark && npm install && npm run dev',
},
{
name: "vue-docx-from-html",
command: 'cd ../vue-docx-from-html && npm install && npm run dev',
},
{
name: "vue-example",
command: 'cd ../vue-example && npm install && npm run dev',
},
{
name: "vue-fields-example",
command: 'cd ../vue-fields-example && npm install && npm run dev',
},
{
name: "vue-linked-editor-sections",
command: 'cd ../vue-linked-editor-sections && npm install && npm run dev',
},
]
}