Skip to content

Commit c9e6f73

Browse files
committed
chore: lint
1 parent 4962d0d commit c9e6f73

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.madrun.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {run, cutEnv} from 'madrun';
22

33
const env = {
4-
SUPERTAPE_CHECK_ASSERTIONS_COUNT: 0,
54
SUPERTAPE_CHECK_SCOPES: 0,
65
};
76

test/replace.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test('replace: one npm run ', async (t) => {
99

1010
t.equal(result, 'one', 'should get script name');
1111
t.end();
12-
});
12+
}, {checkAssertionsCount: false});
1313

1414
test('replace: npm tst', async (t) => {
1515
const result = await replace('npm tst', (type, str) => {
@@ -19,7 +19,7 @@ test('replace: npm tst', async (t) => {
1919

2020
t.equal(result, 'test', 'should determine reserved: tst');
2121
t.end();
22-
});
22+
}, {checkAssertionsCount: false});
2323

2424
test('replace: npm t', async (t) => {
2525
const result = await replace('npm t', (type, str) => {
@@ -29,7 +29,7 @@ test('replace: npm t', async (t) => {
2929

3030
t.equal(result, 'test', 'should determine reserved: t');
3131
t.end();
32-
});
32+
}, {checkAssertionsCount: false});
3333

3434
test('replace: npm version', async (t) => {
3535
const result = await replace('npm version', (type, str) => {
@@ -59,4 +59,4 @@ test('replace: a few npm runs', async (t) => {
5959

6060
t.equal(cmd, 'one && two', 'should cut npm run from all expressions');
6161
t.end();
62-
});
62+
}, {checkAssertionsCount: false});

0 commit comments

Comments
 (0)