mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(package) rm eslint-plugin-tape
This commit is contained in:
parent
02f8d75273
commit
d5d67b108f
3 changed files with 3 additions and 7 deletions
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue