()
| 66 | ]; |
| 67 | |
| 68 | async function main() { |
| 69 | let poco = new Poco(screen); |
| 70 | poco.begin(); |
| 71 | poco.fillRectangle(poco.makeColor(0, 0, 0), 0, 0, poco.width, poco.height); |
| 72 | poco.end(); |
| 73 | |
| 74 | let index = 0; |
| 75 | while (true) { |
| 76 | try { |
| 77 | await display(poco, "test.moddable.com", paths[index]); |
| 78 | } |
| 79 | catch { |
| 80 | /* this space intentionally left blank */ |
| 81 | } |
| 82 | index = (index + 1) % paths.length; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | export default main; |
nothing calls this directly
no test coverage detected