summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/common/wpt.js1
-rw-r--r--test/js-native-api/test_general/testNapiRun.js1
-rw-r--r--test/parallel/test-assert-deep.js2
-rw-r--r--test/parallel/test-assert.js3
4 files changed, 1 insertions, 6 deletions
diff --git a/test/common/wpt.js b/test/common/wpt.js
index 2a25a22af5..de8dd0fc42 100644
--- a/test/common/wpt.js
+++ b/test/common/wpt.js
@@ -1,4 +1,3 @@
-/* eslint-disable node-core/required-modules */
'use strict';
const assert = require('assert');
diff --git a/test/js-native-api/test_general/testNapiRun.js b/test/js-native-api/test_general/testNapiRun.js
index e322d899ed..38bfa3a516 100644
--- a/test/js-native-api/test_general/testNapiRun.js
+++ b/test/js-native-api/test_general/testNapiRun.js
@@ -4,7 +4,6 @@ const common = require('../../common');
const assert = require('assert');
// `addon` is referenced through the eval expression in testFile
-// eslint-disable-next-line no-unused-vars
const addon = require(`./build/${common.buildType}/test_general`);
const testCase = '(41.92 + 0.08);';
diff --git a/test/parallel/test-assert-deep.js b/test/parallel/test-assert-deep.js
index ceb17bdf56..68b3ee5497 100644
--- a/test/parallel/test-assert-deep.js
+++ b/test/parallel/test-assert-deep.js
@@ -42,7 +42,7 @@ function re(literals, ...values) {
// That is why we discourage using deepEqual in our own tests.
// Turn off no-restricted-properties because we are testing deepEqual!
-/* eslint-disable no-restricted-properties, prefer-common-expectserror */
+/* eslint-disable no-restricted-properties */
const arr = new Uint8Array([120, 121, 122, 10]);
const buf = Buffer.from(arr);
diff --git a/test/parallel/test-assert.js b/test/parallel/test-assert.js
index 9028d9ae30..db00ed2836 100644
--- a/test/parallel/test-assert.js
+++ b/test/parallel/test-assert.js
@@ -22,8 +22,6 @@
'use strict';
-/* eslint-disable node-core/prefer-common-expectserror */
-
const common = require('../common');
const assert = require('assert');
const { inspect } = require('util');
@@ -664,7 +662,6 @@ common.expectsError(
const tmp = fs.close;
fs.close = common.mustCall(tmp, 1);
function throwErr() {
- // eslint-disable-next-line prefer-assert-methods
assert(
(Buffer.from('test') instanceof Error)
);