Skip to content

Commit 2ac345e

Browse files
committed
Lint
1 parent 5f479bb commit 2ac345e

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

test/assert.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {assert} from '../lib/assert.js';
2+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
23
import {test} from 'node:test';
34
import {throws} from 'node:assert/strict';
45

test/index.test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import {deepEqual, equal, ok, throws} from 'node:assert/strict';
22
import {Buffer} from 'node:buffer';
33
import {Modnar} from './fixtures/modnar.js';
44
import {Random} from '../lib/index.js';
5+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
56
import {test} from 'node:test';
67

8+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
79
test.beforeEach(t => {
810
const m = new Modnar();
911
const r = new Random(m.source);
1012
t.context = {m, r};
1113
});
1214

15+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
1316
test.afterEach(t => {
1417
ok(t.context.m.isDone);
1518
});

test/vose.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {equal, ok, throws} from 'node:assert/strict';
22
import {Random} from '../lib/index.js';
33
import {Vose} from '../lib/vose.js';
4+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
45
import test from 'node:test';
56

67
test('vose', () => {

0 commit comments

Comments
 (0)