From a3bff8d320b2199e29c4839c5652a3e4692933a6 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Thu, 10 Nov 2016 17:11:26 +0300 Subject: [PATCH] another test for user profile --- test/user.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/user.js b/test/user.js index 796ef4b3ac..b60caca663 100644 --- a/test/user.js +++ b/test/user.js @@ -503,6 +503,15 @@ describe('User', function () { }); }); + it('should load profile page', function (done) { + request(nconf.get('url') + '/api/user/updatedagain', {jar: jar, json: true}, function (err, res, body) { + assert.ifError(err); + assert.equal(res.statusCode, 200); + assert(body); + done(); + }); + }); + it('should load settings page', function (done) { request(nconf.get('url') + '/api/user/updatedagain/settings', {jar: jar, json: true}, function (err, res, body) { assert.ifError(err);