From 378728e534dec170ffe89782dc5c3d9f0a8c865d Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 17 Jan 2017 13:54:09 +0900 Subject: [PATCH] test --- test/api.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api.js b/test/api.js index ad122cf1a..ab2bc5bdd 100644 --- a/test/api.js +++ b/test/api.js @@ -96,7 +96,7 @@ describe('API', () => { }); }); - it('正しい情報で正しくサインインできる', done => { + it('正しい情報でサインインできる', done => { request('/signin', account).then(res => { res.should.have.status(204); me = res.header['set-cookie'][0].match(/i=(!\w+)/)[1]; @@ -151,4 +151,4 @@ describe('API', () => { }); }); -}); \ No newline at end of file +});