Skip to content

Commit e41a6a2

Browse files
committed
squash: make linter happy
1 parent 64c6103 commit e41a6a2

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

test/parallel/test-assert-partial-deep-equal.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ const vm = require('node:vm');
77
const assert = require('node:assert');
88
const { describe, it } = require('node:test');
99

10+
// TODO(LiviaMedeiros): once linter recognizes `Float16Array`, remove next line
11+
const { Float16Array } = globalThis;
12+
1013
const x = ['x'];
1114

1215
function createCircularObject() {

test/parallel/test-assert-typedarray-deepequal.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ require('../common');
66
const assert = require('assert');
77
const { test, suite } = require('node:test');
88

9+
// TODO(LiviaMedeiros): once linter recognizes `Float16Array`, remove next line
10+
const { Float16Array } = globalThis;
11+
912
function makeBlock(f) {
1013
const args = Array.prototype.slice.call(arguments, 1);
1114
return function() {

0 commit comments

Comments
 (0)