Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS function () { a = x; } threw exception ReferenceError: x is not defined.
30 PASS function () { x += "foo"; } threw exception ReferenceError: x is not defined.
31 PASS function () { b = a.x; } did not throw an exception
32 PASS function () { b = a['x']; } did not throw an exception
33 PASS function () { a['x'] += 'baz'; } did not throw an exception
34 PASS a['x'] is "undefinedbaz"
35 PASS function () { b = a.y; } did not throw an exception
36 PASS function () { a.y += 'glarch'; } did not throw an exception
37 PASS a['y'] is "undefinedglarch"
38 PASS successfullyParsed is true