File tree 2 files changed +35
-0
lines changed
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import JSDOMEnvironment from 'jest-environment-jsdom';
4
4
import { TextDecoder , TextEncoder } from 'util' ;
5
5
6
6
import attachRafStub from './attach-raf-stub' ;
7
+ import transitionEventPolyfill from './transition-event-polyfill' ;
7
8
8
9
declare global {
9
10
interface ProcessEnv {
@@ -16,6 +17,7 @@ export default class MyJSDOMEnvironment extends JSDOMEnvironment {
16
17
super ( config , context ) ;
17
18
18
19
attachRafStub . call ( this ) ;
20
+ transitionEventPolyfill . call ( this ) ;
19
21
20
22
// When importing jsdom in one of the test it throws an
21
23
// error, because TextDecoder and TextEncoder are needed.
Original file line number Diff line number Diff line change
1
+ import type JSDOMEnvironment from 'jest-environment-jsdom' ;
2
+
3
+ /**
4
+ * @testing -library/dom and jsdom do not properly implement
5
+ * the TransitionEvent. So we are implementing our own polyfill.
6
+ *
7
+ * See:
8
+ * - https://github.com/testing-library/dom-testing-library/pull/865
9
+ * - https://github.com/jsdom/jsdom/issues/1781
10
+ * - https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent/TransitionEvent
11
+ *
12
+ * Inspirated by: https://codesandbox.io/s/bgfz1?file=%2Fsrc%2Findex.test.js%3A70-363
13
+ */
14
+ export default function transitionEventPolyfill ( this : JSDOMEnvironment ) {
15
+ class TransitionEvent extends this . global . Event {
16
+ readonly elapsedTime : number ;
17
+ readonly propertyName : string ;
18
+ readonly pseudoElement : string ;
19
+
20
+ constructor (
21
+ type : string ,
22
+ transitionEventInitDict : TransitionEventInit = { } ,
23
+ ) {
24
+ super ( type , transitionEventInitDict ) ;
25
+
26
+ this . elapsedTime = transitionEventInitDict . elapsedTime || 0.0 ;
27
+ this . propertyName = transitionEventInitDict . propertyName || '' ;
28
+ this . pseudoElement = transitionEventInitDict . pseudoElement || '' ;
29
+ }
30
+ }
31
+
32
+ this . global . TransitionEvent = TransitionEvent ;
33
+ }
You can’t perform that action at this time.
0 commit comments