OLD | NEW |
1 | 1 |
2 Deserialize to {"foo":"zoo","bar":{"baz":"myNewKey"}}: | 2 Deserialize to {"foo":"zoo","bar":{"baz":"myNewKey"}}: |
3 PASS JSON.stringify(newObj) is JSON.stringify(obj) | 3 PASS JSON.stringify(newObj) is JSON.stringify(obj) |
4 PASS areValuesIdentical(newObj, obj) is true | 4 PASS areValuesIdentical(newObj, obj) is true |
5 Serialize {"foo":"zoo","bar":{"baz":"myNewKey"}}: | 5 Serialize {"foo":"zoo","bar":{"baz":"myNewKey"}}: |
6 PASS bufferView.length is expectedBufferValues.length | 6 PASS bufferView.length is expectedBufferValues.length |
7 | 7 |
8 Deserialize to {"foo":"zoo","bar":"myNewKey"}: | 8 Deserialize to {"foo":"zoo","bar":"myNewKey"}: |
9 PASS JSON.stringify(newObj) is JSON.stringify(obj) | 9 PASS JSON.stringify(newObj) is JSON.stringify(obj) |
10 PASS areValuesIdentical(newObj, obj) is true | 10 PASS areValuesIdentical(newObj, obj) is true |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 Deserialize to ["foo","bar"]: | 194 Deserialize to ["foo","bar"]: |
195 PASS JSON.stringify(newObj) is JSON.stringify(obj) | 195 PASS JSON.stringify(newObj) is JSON.stringify(obj) |
196 PASS areValuesIdentical(newObj, obj) is true | 196 PASS areValuesIdentical(newObj, obj) is true |
197 PASS JSON.stringify(newObj) is JSON.stringify(obj) | 197 PASS JSON.stringify(newObj) is JSON.stringify(obj) |
198 PASS areValuesIdentical(newObj, obj) is true | 198 PASS areValuesIdentical(newObj, obj) is true |
199 Serialize ["foo","bar"]: | 199 Serialize ["foo","bar"]: |
200 PASS bufferView.length is expectedBufferValues.length | 200 PASS bufferView.length is expectedBufferValues.length |
201 | 201 |
202 Serialize undefined: | 202 Serialize undefined: |
203 PASS thrownException.code is expectedException | 203 PASS thrownException.code is expectedException |
| 204 |
| 205 PASS areValuesIdentical(blobObj1, blobObj2) is true |
| 206 PASS areValuesIdentical(dictionaryWithBlob1, dictionaryWithBlob2) is true |
| 207 PASS self.blobContent1 is self.blobContent2 |
204 PASS successfullyParsed is true | 208 PASS successfullyParsed is true |
205 | 209 |
206 TEST COMPLETE | 210 TEST COMPLETE |
207 | 211 |
OLD | NEW |