Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
31 PASS Array.isArray(currentHolder) is true
32 PASS currentHolder.length is 5
35 PASS currentHolder[0] is "a value"
36 PASS currentHolder[1] is "another value"
37 PASS currentHolder[2] is "and another value"
38 PASS currentHolder[3] is "to delete"
39 PASS currentHolder[4] is "extra value"
42 PASS Array.isArray(currentHolder) is true
43 PASS currentHolder.length is 5
46 PASS currentHolder is lastHolder
49 PASS currentHolder.hasOwnProperty(0) is false
52 PASS Array.isArray(currentHolder) is true
53 PASS currentHolder.length is 5
56 PASS currentHolder is lastHolder
59 PASS currentHolder[2] is "a replaced value"
62 PASS value is currentHolder[2]
65 PASS Array.isArray(currentHolder) is true
66 PASS currentHolder.length is 5
69 PASS currentHolder is lastHolder
72 PASS currentHolder.hasOwnProperty(3) is false
75 PASS value is undefined.
78 PASS Array.isArray(currentHolder) is true
79 PASS currentHolder.length is 4
82 PASS currentHolder is lastHolder
83 PASS Ensured that property was visited despite Array length being reduced.
84 PASS value is undefined.
87 PASS '' in lastHolder is true
88 PASS result is lastHolder['']
91 PASS result.hasOwnProperty(3) is true
94 PASS currentHolder != globalObject is true
97 PASS currentHolder['a property'] is "a value"
98 PASS currentHolder['another property'] is "another value"
99 PASS currentHolder['and another property'] is "and another value"
100 PASS currentHolder['to delete'] is "will be deleted"
101 PASS currentHolder != globalObject is true
104 PASS currentHolder is lastHolder
107 PASS currentHolder.hasOwnProperty('a property') is false
108 PASS currentHolder != globalObject is true
111 PASS currentHolder is lastHolder
113 PASS currentHolder['and another property'] is "a replaced value"
116 PASS value is "a replaced value"
117 PASS currentHolder != globalObject is true
120 PASS currentHolder is lastHolder
123 PASS currentHolder.hasOwnProperty('to delete') is false
126 PASS value is undefined.
129 PASS lastHolder.hasOwnProperty('') is true
130 PASS result.hasOwnProperty('a property') is false
131 PASS result.hasOwnProperty('to delete') is true
132 PASS result is lastHolder['']
135 PASS JSON.parse("[0,1]", reviveAddsCycle) threw exception RangeError: Maximum call stack size exceeded.
138 PASS JSON.stringify(JSON.parse("[0,1]", reviveIntroducesNewArrayLikeObject)) is '[0,["a","a"]]'
139 PASS successfullyParsed is true