Remove sinon in favor of existing APIs of playwright and vitest
We where using sinon in the playwright tests to simulate a different
time, which since playwright@1.45.0 can be done with the Clock API
calling page.clock.setFixedTime.
And to test the mutex executor we can use the vitest utils spy function
vi.fn() instead of sinon.spy()
We where using sinon in the playwright tests to simulate a different
time, which since playwright@1.45.0 can be done with the Clock API
calling page.clock.setFixedTime.
And to test the mutex executor we can use the vitest utils spy function
vi.fn() instead of sinon.spy()