* @param {*} actual * @param {string=} opt_message * @return {!Chai.Assertion}
(actual, opt_message)
| 27 | * @return {!Chai.Assertion} |
| 28 | */ |
| 29 | function expect(actual, opt_message) { |
| 30 | if (!installed) { |
| 31 | installed = true; |
| 32 | // See https://www.chaijs.com/guide/helpers/ for details on implementation |
| 33 | chai.use(installWrappers); |
| 34 | } |
| 35 | |
| 36 | return chai.expect(actual, opt_message); |
| 37 | } |
| 38 | |
| 39 | /** @enum {string} */ |
| 40 | const ChaiType = { |
no outgoing calls