Skip to content

Commit 8950ee0

Browse files
authored
Merge pull request #2325 from trusktr/patch-1
fix solid.js camel case test
2 parents 9682933 + a3038c4 commit 8950ee0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
+7-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"success": 30,
3-
"failed": 2,
2+
"success": 32,
3+
"failed": 0,
44
"skipped": 0,
55
"error": false,
66
"disconnected": false,
7-
"exitCode": 1,
8-
"score": 94,
7+
"exitCode": 0,
8+
"score": 100,
99
"basicSupport": {
1010
"total": 16,
1111
"failed": 0,
1212
"passed": 16
1313
},
1414
"advancedSupport": {
1515
"total": 16,
16-
"failed": 2,
17-
"passed": 14
16+
"failed": 0,
17+
"passed": 16
1818
}
19-
}
19+
}

libraries/solid/src/components.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const ComponentWithProperties = () => {
5858
str={data.str}
5959
arr={data.arr}
6060
obj={data.obj}
61-
camelCaseObj={data.camelCaseObj}
61+
prop:camelCaseObj={data.camelCaseObj} // verbatim prop syntax, otherwise defaults to dash-case-to-camel-case
6262
/>
6363
);
6464
};

0 commit comments

Comments
 (0)