summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client_user.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/client_user.test.jsx')
-rw-r--r--webapp/tests/client_user.test.jsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/webapp/tests/client_user.test.jsx b/webapp/tests/client_user.test.jsx
index 7835a38bf..610308fa3 100644
--- a/webapp/tests/client_user.test.jsx
+++ b/webapp/tests/client_user.test.jsx
@@ -480,6 +480,20 @@ describe('Client.User', function() {
});
});
+ it('getProfilesForDirectMessageList', function(done) {
+ TestHelper.initBasic(() => {
+ TestHelper.basicClient().getProfilesForDirectMessageList(
+ function(data) {
+ assert.equal(Object.keys(data).length > 0, true);
+ done();
+ },
+ function(err) {
+ done(new Error(err.message));
+ }
+ );
+ });
+ });
+
it('getStatuses', function(done) {
TestHelper.initBasic(() => {
var ids = [];