(config: {
id: string;
url: string;
ignoreBrowserSynchronization?: boolean;
worker: Worker;
})
| 55 | }); |
| 56 | |
| 57 | function runTableBenchmark(config: { |
| 58 | id: string; |
| 59 | url: string; |
| 60 | ignoreBrowserSynchronization?: boolean; |
| 61 | worker: Worker; |
| 62 | }) { |
| 63 | return runBenchmark({ |
| 64 | id: config.id, |
| 65 | url: config.url, |
| 66 | ignoreBrowserSynchronization: config.ignoreBrowserSynchronization, |
| 67 | params: [ |
| 68 | {name: 'cols', value: 40}, |
| 69 | {name: 'rows', value: 200}, |
| 70 | ], |
| 71 | prepare: config.worker.prepare, |
| 72 | work: config.worker.work, |
| 73 | }); |
| 74 | } |
no test coverage detected
searching dependent graphs…