Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS ({a:true}).a is true
30 PASS ({__proto__: {a:false}, a:true}).a is true
31 PASS ({__proto__: {set a(v) {throw 'Should not call setter'; }}, a:true}).a is true
32 PASS ({__proto__: {get a() {throw 'Should not reach getter'; }}, a:true}).a is true
33 PASS ({__proto__: {get a() {throw 'Should not reach getter'; }, b:true}, a:true}).b is true
34 PASS ({__proto__: {__proto__: {a:false}}, a:true}).a is true
35 PASS ({__proto__: {__proto__: {set a(v) {throw 'Should not call setter'; }}}, a:true}).a is true
36 PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }}}, a:true}).a is true
37 PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }, b:true}}, a:true}).b is true
38 PASS successfullyParsed is true