From 23ccfc845ca2350075f6027e16c6206fc7b71716 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Mon, 26 Jun 2017 08:16:57 -0400 Subject: Move remaining actions over to use redux and v4 endpoints (#6720) --- webapp/tests/client/client_reaction.test.jsx | 79 ---------------------------- 1 file changed, 79 deletions(-) delete mode 100644 webapp/tests/client/client_reaction.test.jsx (limited to 'webapp/tests/client/client_reaction.test.jsx') diff --git a/webapp/tests/client/client_reaction.test.jsx b/webapp/tests/client/client_reaction.test.jsx deleted file mode 100644 index d1571d3ae..000000000 --- a/webapp/tests/client/client_reaction.test.jsx +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import TestHelper from 'tests/helpers/client-test-helper.jsx'; - -describe('Client.Reaction', function() { - test('saveListReaction', function(done) { - TestHelper.initBasic(done, () => { - const channelId = TestHelper.basicChannel().id; - const postId = TestHelper.basicPost().id; - - const reaction = { - post_id: postId, - user_id: TestHelper.basicUser().id, - emoji_name: 'upside_down_face' - }; - - TestHelper.basicClient().saveReaction( - channelId, - reaction, - function() { - TestHelper.basicClient().listReactions( - channelId, - postId, - function(reactions) { - if (reactions.length === 1 && - reactions[0].post_id === reaction.post_id && - reactions[0].user_id === reaction.user_id && - reactions[0].emoji_name === reaction.emoji_name) { - done(); - } else { - done.fail(new Error('test reaction wasn\'t returned')); - } - }, - function(err) { - done.fail(new Error(err.message)); - } - ); - }, - function(err) { - done.fail(new Error(err.message)); - } - ); - }); - }); - - test('deleteReaction', function(done) { - TestHelper.initBasic(done, () => { - const channelId = TestHelper.basicChannel().id; - const postId = TestHelper.basicPost().id; - - const reaction = { - post_id: postId, - user_id: TestHelper.basicUser().id, - emoji_name: 'upside_down_face' - }; - - TestHelper.basicClient().saveReaction( - channelId, - reaction, - function() { - TestHelper.basicClient().deleteReaction( - channelId, - reaction, - function() { - done(); - }, - function(err) { - done.fail(new Error(err.message)); - } - ); - }, - function(err) { - done.fail(new Error(err.message)); - } - ); - }); - }); -}); -- cgit v1.2.3-1-g7c22