We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aed6a49 commit 9273e37Copy full SHA for 9273e37
packages/utils/test/normalize.test.ts
@@ -5,7 +5,6 @@
5
import * as isModule from '../src/is';
6
import { normalize } from '../src/normalize';
7
import * as stacktraceModule from '../src/stacktrace';
8
-import { testOnlyIfNodeVersionAtLeast } from './testutils';
9
10
describe('normalize()', () => {
11
describe('acts as a pass-through for simple-cases', () => {
@@ -48,7 +47,7 @@ describe('normalize()', () => {
48
47
});
49
50
51
- testOnlyIfNodeVersionAtLeast(8)('extracts data from `Event` objects', () => {
+ describe('extracts data from `Event` objects', () => {
52
const isElement = jest.spyOn(isModule, 'isElement').mockReturnValue(true);
53
const getAttribute = () => undefined;
54
0 commit comments