(value)
| 410 | } |
| 411 | |
| 412 | assert(value) { |
| 413 | console.log({ |
| 414 | value, |
| 415 | props: this.properties, |
| 416 | keys: Object.keys(this.properties) |
| 417 | }); |
| 418 | for (const key of Object.keys(this.properties)) { |
| 419 | console.log({ key, value: value[key], expected: this.properties[key] }); |
| 420 | assertMatchesExpectation(value[key], this.properties[key]); |
| 421 | } |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | function toHaveProperties(properties) { |
nothing calls this directly
no test coverage detected