From ccb691edd890dc4094779f1f167000fdcd896d0c Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 17 Nov 2016 17:00:02 +0200 Subject: [PATCH] test(pack) rm duplicate --- test/rest/pack.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/test/rest/pack.js b/test/rest/pack.js index 4206835e..8cd418ac 100644 --- a/test/rest/pack.js +++ b/test/rest/pack.js @@ -25,22 +25,6 @@ const put = promisify((options, fn) => { fn(null, request.put(options)); }); -test('cloudcmd: rest: fs: path', (t) => { - before((port, after) => { - get(`http://localhost:${port}/api/v1/fs`) - .then(warp(_pullout, 'string')) - .then(JSON.parse) - .then((dir) => { - t.equal('/', dir.path, 'should dir path be "/"'); - t.end(); - after(); - }) - .catch((error) => { - console.log(error); - }); - }); -}); - test('cloudcmd: rest: pack: get', (t) => { before((port, after) => { get(`http://localhost:${port}/api/v1/pack/fixture/pack`)