Skip to content

Commit 83b189b

Browse files
committed
cleanup test fixtures
1 parent 4353d06 commit 83b189b

17 files changed

+35
-41
lines changed

test/fixture/async-await.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
'use strict';
2-
const test = require('../../');
1+
import test from '../../';
32

43
test('async function', async function (t) {
54
t.plan(1);
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import test from '../../';
22

33
test(t => {
4-
var circular = ['a', 'b'];
4+
const circular = ['a', 'b'];
55
circular.push(circular);
66
t.same([circular, 'c'], [circular, 'd']);
77
});

test/fixture/destructuring-public-api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test.cb('callback mode', ({context: foo, ... t}) => {
77
t.end();
88
});
99

10-
test.cb('callback mode', ({context: foo, end, ... t}) => {
10+
test.cb('callback mode #2', ({context: foo, end, ... t}) => {
1111
t.is(foo, 'bar');
1212
end();
1313
});

test/fixture/generators.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
'use strict';
2-
const test = require('../../');
1+
import test from '../../';
32

43
test('generator function', function * (t) {
54
t.plan(1);

test/fixture/hooks-failing.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
const test = require('../../');
1+
import test from '../../';
22

33
test.beforeEach(fail);
44
test(pass);
55

6-
function pass(t) {
7-
}
6+
function pass() {}
87

98
function fail(t) {
109
t.fail();

test/fixture/hooks-passing.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
const test = require('../../');
1+
import test from '../../';
22

33
test.before(pass);
44
test.beforeEach(pass);
55
test.after(pass);
66
test.afterEach(pass);
77
test(pass);
88

9-
function pass(t) {
10-
}
9+
function pass() {}

test/fixture/ignored-dirs/fixtures/test.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ import test from '../../../../';
22

33
test(t => {
44
t.pass();
5-
t.end();
65
});

test/fixture/ignored-dirs/helpers/test.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ import test from '../../../../';
22

33
test(t => {
44
t.pass();
5-
t.end();
65
});

test/fixture/long-running.js

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
1-
'use strict';
2-
const test = require('../../');
3-
var onExit = require('signal-exit');
1+
import test from '../../';
2+
import signalExit from 'signal-exit';
43

5-
test.cb('long running', function (t) {
4+
test.cb('long running', t => {
65
t.plan(1);
76

8-
onExit(function () {
7+
signalExit(() => {
98
// simulate an exit hook that lasts a short while
10-
var start = Date.now();
11-
while(Date.now() - start < 2000) {
12-
//synchronously wait for 2 seconds
9+
const start = Date.now();
10+
11+
while (Date.now() - start < 2000) {
12+
// synchronously wait for 2 seconds
1313
}
14+
1415
process.send({
1516
name: 'cleanup-completed',
1617
data: {completed: true},
1718
ava: true
1819
});
1920
}, {alwaysLast: true});
2021

21-
setTimeout(function () {
22+
setTimeout(() => {
2223
t.ok(true);
2324
t.end();
2425
});
2526

26-
setTimeout(function () {
27-
// this would keep the process running for a long time.
27+
setTimeout(() => {
28+
// this would keep the process running for a long time
2829
console.log('I\'m gonna live forever!!');
2930
}, 15000);
3031
});

test/fixture/loud-rejection.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const test = require('../../');
1+
import test from '../../';
22

33
test.cb('creates an unhandled rejection', t => {
44
Promise.reject(new Error(`You can't handle this!`));
55

6-
setTimeout(function () {
6+
setTimeout(() => {
77
t.end();
88
});
99
});

test/fixture/one-pass-one-fail.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const test = require('../../');
1+
import test from '../../';
22

33
test('this is a passing test', t => {
44
t.ok(true);

test/fixture/process-cwd.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
'use strict';
2-
const test = require('../../');
1+
import test from '../../';
32

43
test(t => {
54
t.is(process.cwd(), __dirname);

test/fixture/source-map-file.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const test = require('../../');
44
// The uncaught exception is passed to the corresponding cli test. The line
55
// numbers from the 'throws' fixture (which uses a map file), as well as the
66
// line of the fixture.run() call, should match the source lines.
7-
test('throw an uncaught exception', t => {
7+
test('throw an uncaught exception', () => {
88
setImmediate(run);
99
});
1010

test/fixture/source-map-inline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const test = require('../../');
44
// The uncaught exception is passed to the corresponding cli test. The line
55
// numbers from the 'throws' fixture (using an inline source map), as well as
66
// the line of the fixture.run() call, should match the source lines.
7-
test('throw an uncaught exception', t => {
7+
test('throw an uncaught exception', () => {
88
setImmediate(run);
99
});
1010

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const test = require('../../');
1+
import test from '../../';
22

3-
test('throw an uncaught exception', t => {
3+
test('throw an uncaught exception', () => {
44
setImmediate(() => {
5-
throw function () {};
5+
throw () => {};
66
});
77
});

test/fixture/throw-named-function.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const test = require('../../');
1+
import test from '../../';
22

33
function fooFn() {}
44

5-
test('throw an uncaught exception', t => {
5+
test('throw an uncaught exception', () => {
66
setImmediate(() => {
7-
throw fooFn
7+
throw fooFn;
88
});
99
});

test/fixture/uncaught-exception.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const test = require('../../');
1+
import test from '../../';
22

3-
test('throw an uncaught exception', t => {
3+
test('throw an uncaught exception', () => {
44
setImmediate(() => {
5-
throw new Error(`Can't catch me!`)
5+
throw new Error(`Can't catch me!`);
66
});
77
});

0 commit comments

Comments
 (0)