File size: 326 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import '@testing-library/jest-dom';
import { jestPreviewConfigure } from 'jest-preview';
import { TextEncoder } from 'util';
global.TextEncoder = TextEncoder;
// Automatically preview failed tests to Jest Preview Dashboard
// https://www.jest-preview.com/blog/automatic-mode
jestPreviewConfigure({
autoPreview: true,
});
|