()
| 58 | const b = tf.tensor1d([2, -1, 0, 3]); |
| 59 | |
| 60 | const c = async () => { |
| 61 | const result = a.div(b); |
| 62 | // Must await result so we know exception would have happened by the |
| 63 | // time we call `expect`. |
| 64 | await result.data(); |
| 65 | }; |
| 66 | |
| 67 | await c(); |
| 68 |
no test coverage detected