summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client/client_reaction.test.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-06-26 08:16:57 -0400
committerGitHub <noreply@github.com>2017-06-26 08:16:57 -0400
commit23ccfc845ca2350075f6027e16c6206fc7b71716 (patch)
tree3fd1f896a5a24b43913be03b21c85638dd7c356e /webapp/tests/client/client_reaction.test.jsx
parentfe7e9d95b30ae2195fcba68db960866db91ce045 (diff)
downloadchat-23ccfc845ca2350075f6027e16c6206fc7b71716.tar.gz
chat-23ccfc845ca2350075f6027e16c6206fc7b71716.tar.bz2
chat-23ccfc845ca2350075f6027e16c6206fc7b71716.zip
Move remaining actions over to use redux and v4 endpoints (#6720)
Diffstat (limited to 'webapp/tests/client/client_reaction.test.jsx')
-rw-r--r--webapp/tests/client/client_reaction.test.jsx79
1 files changed, 0 insertions, 79 deletions
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));
- }
- );
- });
- });
-});