Skip to content

Commit 4b1a36c

Browse files
committed
os: run linter on test too
1 parent c66f71d commit 4b1a36c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
'use strict';
22

3-
const common = require('../common');
43
const { test } = require('node:test');
54
const assert = require('node:assert');
65
const { constants } = require('node:os');
76

8-
const { internalBinding } = require('internal/test/binding');
97

108
test('Verify that signals constant is immutable', () => {
11-
assert.throws(() => constants.signals.FOOBAR = 1337, TypeError);
12-
})
9+
assert.throws(() => constants.signals.FOOBAR = 1337, TypeError);
10+
});

0 commit comments

Comments
 (0)