Skip to content

Commit 5ec5a74

Browse files
committed
test(jsdom env): fix issue with missing TransitionEvent
1 parent 45e5cde commit 5ec5a74

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

test/setup/environment.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import JSDOMEnvironment from 'jest-environment-jsdom';
44
import { TextDecoder, TextEncoder } from 'util';
55

66
import attachRafStub from './attach-raf-stub';
7+
import transitionEventPolyfill from './transition-event-polyfill';
78

89
declare global {
910
interface ProcessEnv {
@@ -16,6 +17,7 @@ export default class MyJSDOMEnvironment extends JSDOMEnvironment {
1617
super(config, context);
1718

1819
attachRafStub.call(this);
20+
transitionEventPolyfill.call(this);
1921

2022
// When importing jsdom in one of the test it throws an
2123
// error, because TextDecoder and TextEncoder are needed.
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
}

0 commit comments

Comments
 (0)