Skip to content

Commit

Permalink
chore(travis) node v15
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Nov 10, 2020
1 parent ebbcc91 commit bc701a2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Expand Up @@ -6,8 +6,8 @@
}
}],
"extends": [
"plugin:putout/recommended",
"plugin:node/recommended"
"plugin:node/recommended",
"plugin:putout/recommended"
],
"plugins": [
"putout",
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -9,5 +9,5 @@ legacy

.nyc_output
*.swp

.putoutcache

2 changes: 1 addition & 1 deletion .madrun.js
Expand Up @@ -9,7 +9,7 @@ module.exports = {
'watch:test': () => run('watcher', 'npm test'),
'watch:lint': () => run('watcher', '\'npm run lint\''),
'watcher': () => 'nodemon -w test -w lib --exec',
'lint': () => 'putout lib .madrun.js',
'lint': () => 'putout lib *.js *.md',
'fix:lint': () => run('lint', '--fix'),
};

2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,8 +1,8 @@
language: node_js
node_js:
- 15
- 14
- 12
- 10

script:
- npm run lint
Expand Down
2 changes: 1 addition & 1 deletion lib/rest/get.spec.js
Expand Up @@ -128,7 +128,7 @@ test('restbox: get: readbox: hash', async (t) => {
const {random} = Math;

Math.random = stub()
.returns(31337);
.returns(31_337);

const {body} = await request.get('/dropbox/fs/?hash');

Expand Down

0 comments on commit bc701a2

Please sign in to comment.