chore(package) rm eslint-plugin-tape

This commit is contained in:
coderaiser 2019-01-17 12:14:11 +02:00
parent 02f8d75273
commit d5d67b108f
3 changed files with 3 additions and 7 deletions

View file

@ -7,15 +7,12 @@
},
"rules": {
"no-process-exit": 0,
"tape/max-asserts": ["error", 1],
},
"extends": [
".eslintrc.json",
"plugin:node/recommended",
"plugin:tape/recommended",
],
"plugins": [
"node",
"tape",
"node"
]
}

View file

@ -190,7 +190,6 @@
"es6-promisify": "^6.0.0",
"eslint": "^5.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-tape": "^1.1.0",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"fast-async": "^7.0.6",
"file-loader": "^3.0.1",

View file

@ -1,6 +1,6 @@
'use strict';
const test = require('supertape');
const test = require('tape');
const criton = require('criton');
const cloudcmd = require('..');
@ -13,7 +13,7 @@ const {request} = require('serve-once')(cloudcmd, {
config,
});
test('cloudcmd: static', async (t) => {
test.only('cloudcmd: static', async (t) => {
const name = 'package.json';
const {body} = await request.get(`/${name}`, {
type: 'json',