From 7d449e05562c76bb430efc1c36bd715675a84152 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Thu, 23 Mar 2017 18:05:36 +0000 Subject: PLT-5755: Infrastructure for Component Testing. (#5814) This migrates the existing webapp tests to using Jest and Enzyme. The infrastructure is put in place for React component testing, and a few simple example component tests are implemented. This also adds snapshot testing of components, coverage checking for the webapp (although that is not yet integrated to Coveralls), and the ability to run npm run test:watch to automatically re-run affected tests when working on the webapp codebase. --- webapp/tests/client_websocket.test.jsx | 49 ---------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 webapp/tests/client_websocket.test.jsx (limited to 'webapp/tests/client_websocket.test.jsx') diff --git a/webapp/tests/client_websocket.test.jsx b/webapp/tests/client_websocket.test.jsx deleted file mode 100644 index 6535610e3..000000000 --- a/webapp/tests/client_websocket.test.jsx +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. -/* -var assert = require('assert'); -import TestHelper from './test_helper.jsx'; - -describe('Client.WebSocket', function() { - this.timeout(10000); - - it('WebSocket.getStatusesByIds', function(done) { - TestHelper.initBasic(() => { - TestHelper.basicWebSocketClient().getStatusesByIds( - [TestHelper.basicUser().id], - function(resp) { - TestHelper.basicWebSocketClient().close(); - assert.equal(resp.data[TestHelper.basicUser().id], 'online'); - done(); - } - ); - }, true); - }); - - it('WebSocket.getStatuses', function(done) { - TestHelper.initBasic(() => { - TestHelper.basicWebSocketClient().getStatuses( - function(resp) { - TestHelper.basicWebSocketClient().close(); - assert.equal(resp.data != null, true); - done(); - } - ); - }, true); - }); - - it('WebSocket.userTyping', function(done) { - TestHelper.initBasic(() => { - TestHelper.basicWebSocketClient().userTyping( - TestHelper.basicChannel().id, - '', - function(resp) { - TestHelper.basicWebSocketClient().close(); - assert.equal(resp.status, 'OK'); - done(); - } - ); - }, true); - }); -});*/ - -- cgit v1.2.3-1-g7c22