refactor(benchpress): made all it callbacks async (#35147)
PR Close #35147
This commit is contained in:

committed by
Kara Erickson

parent
26b17aee14
commit
5ca7c2d40f
@ -53,13 +53,13 @@ describe('js-web-frameworks benchmark perf', () => {
|
||||
|
||||
[Create1KWorker, Delete1KWorker, UpdateWorker, SwapWorker].forEach((worker) => {
|
||||
describe(worker.id, () => {
|
||||
it(`should run benchmark for ${testPackageName}`, done => {
|
||||
it(`should run benchmark for ${testPackageName}`, async() => {
|
||||
runTableBenchmark({
|
||||
id: `js-web-frameworks.${testPackageName}.${worker.id}`,
|
||||
url: '/',
|
||||
ignoreBrowserSynchronization: true,
|
||||
worker: worker
|
||||
}).then(done, done.fail);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user