Skip to content

Commit 2520537

Browse files
authored
switch from tape to test module (#60)
* switch from tape to test module * remove deprecated node versions
1 parent 61a94f1 commit 2520537

File tree

13 files changed

+1021
-433
lines changed

13 files changed

+1021
-433
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: ['10', '12', '14', '16']
8+
node: ['14', '16', '18']
99
steps:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-node@v2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
2-
const expand = require('../../');
2+
const expand = require('..');
33
const fs = require('fs');
4-
const resfile = __dirname + '/../cases.txt';
4+
const resfile = __dirname + '/../test/cases.txt';
55
const cases = fs.readFileSync(resfile, 'utf8').split('\n');
66

77
bench('Average', function() {

0 commit comments

Comments
 (0)