(passed)
| 4017 | } |
| 4018 | |
| 4019 | function prefix(passed) { |
| 4020 | return ( |
| 4021 | "Expected a promise " + |
| 4022 | (passed ? "not " : "") + |
| 4023 | "to be rejected with " + |
| 4024 | matchersUtil.pp(expectedValue) |
| 4025 | ) |
| 4026 | } |
| 4027 | |
| 4028 | return actualPromise.then( |
| 4029 | function() { |