@tramvai/test-jsdom
v6.79.24
Published
Set of helpers for testing in [jsdom environment](https://github.com/jsdom/jsdom)
Readme
Tramvai test jest
Set of helpers for testing in jsdom environment
Installation
npm i --save-dev @tramvai/test-jsdomApi
waitRaf
Wait for execution of requestAnimationFrame callback
import { waitRaf } from '@tramvai/test-jsdom';
describe('test', () => {
it('test', async () => {
// some code with raf usage
await waitRaf();
});
});