summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client/client_reaction.test.jsx
diff options
context:
space:
mode:
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));
- }
- );
- });
- });
-});