-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTestProfiles.json
More file actions
66 lines (66 loc) · 1.96 KB
/
TestProfiles.json
File metadata and controls
66 lines (66 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[
{
"id" : "react",
"framework" : "React",
"version" : "1.0.0",
"testapp_script" : "react.js",
"tests" : [
{
"name" : "Lifecycle Test",
"function" : "lifecycleTest",
"descriptions" : {
"render" : "RRRRrender does blah",
"mount" : "RRRmount stuff",
"destroy" : "RRRRDESOTRY!!"
}
},
{
"name" : "Rows Test",
"function" : "rowsTest",
"descriptions" : {
"swap" : "TTTTTTswaparapapapapa",
"update" : "TTTTTTupdate junks",
"create" : "TTTTTTcreate some stuff"
}
}
]
},
{
"id" : "vue",
"framework" : "Vue",
"version" : "1.0.0",
"testapp_script" : "vue.js",
"testapp_html" : "vue.html",
"tests" : [
{
"name" : "Lifecycle Test A",
"function" : "testA",
"descriptions" : {
"render" : "VVVVVVrender does blah",
"mount" : "mount stuff",
"destroy" : "DESOTRY!!"
}
},
{
"name" : "Lifecycle Test B",
"function" : "testB",
"descriptions" : {
"mount" : "MOUNT",
"destroy" : "ddddstroy",
"render" : "render it up",
"update" : "YAY UPDATE"
}
},
{
"name" : "Child Lifecycle Test",
"function" : "testC",
"descriptions" : {
"mount" : "MOUNT",
"destroy" : "ddddstroy",
"render" : "render it up",
"update" : "YAY UPDATE"
}
}
]
}
]