Skip to content

Commit 9273e37

Browse files
committed
test(utils): Remove usage of testOnlyIfNodeVersionAtLeast(8) (#5025)
We do not support Node 6 anymore, so we don't need to guard against running on Node 6 in the tests.
1 parent aed6a49 commit 9273e37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/utils/test/normalize.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import * as isModule from '../src/is';
66
import { normalize } from '../src/normalize';
77
import * as stacktraceModule from '../src/stacktrace';
8-
import { testOnlyIfNodeVersionAtLeast } from './testutils';
98

109
describe('normalize()', () => {
1110
describe('acts as a pass-through for simple-cases', () => {
@@ -48,7 +47,7 @@ describe('normalize()', () => {
4847
});
4948
});
5049

51-
testOnlyIfNodeVersionAtLeast(8)('extracts data from `Event` objects', () => {
50+
describe('extracts data from `Event` objects', () => {
5251
const isElement = jest.spyOn(isModule, 'isElement').mockReturnValue(true);
5352
const getAttribute = () => undefined;
5453

0 commit comments

Comments
 (0)