Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS /(x)?\1y/.test("y") is true
30 PASS /(x)?\1y/.exec("y") is ["y", undefined]
31 PASS /(x)?y/.exec("y") is ["y", undefined]
32 PASS "y".match(/(x)?\1y/) is ["y", undefined]
33 PASS "y".match(/(x)?y/) is ["y", undefined]
34 PASS "y".match(/(x)?\1y/g) is ["y"]
35 PASS "y".split(/(x)?\1y/) is ["", undefined, ""]
36 PASS "y".split(/(x)?y/) is ["", undefined, ""]
37 PASS "y".search(/(x)?\1y/) is 0
38 PASS "y".replace(/(x)?\1y/, "z") is "z"
39 PASS "y".replace(/(x)?y/, "$1") is ""
40 PASS "y".replace(/(x)?\1y/, function($0, $1){ return String($1); }) is "undefined"
41 PASS "y".replace(/(x)?y/, function($0, $1){ return String($1); }) is "undefined"
42 PASS "y".replace(/(x)?y/, function($0, $1){ return $1; }) is "undefined"
43 PASS successfullyParsed is true