()
| 1146 | myp5.fill(255, 0, 0); |
| 1147 | |
| 1148 | const testShape = () => { |
| 1149 | myp5.clear(); |
| 1150 | myp5.rect(-myp5.width, -myp5.height, myp5.width * 2, myp5.height * 2); |
| 1151 | }; |
| 1152 | |
| 1153 | testShape(); |
| 1154 | assert.deepEqual(myp5.get(0, 0), [255, 0, 0, 255]); |
no test coverage detected