summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client_team.test.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-01-04 14:11:48 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-01-04 14:11:47 -0500
commit635628cf30460a75d3a870394ad66db91f3bea9f (patch)
tree17d40987fab0876c6dc95acec7f82b4f3eb36c01 /webapp/tests/client_team.test.jsx
parentb3f2ab654e95325b556e0c93b41ea6e15e45fffe (diff)
downloadchat-635628cf30460a75d3a870394ad66db91f3bea9f.tar.gz
chat-635628cf30460a75d3a870394ad66db91f3bea9f.tar.bz2
chat-635628cf30460a75d3a870394ad66db91f3bea9f.zip
Removing old signup team API (#4950)
Diffstat (limited to 'webapp/tests/client_team.test.jsx')
-rw-r--r--webapp/tests/client_team.test.jsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/webapp/tests/client_team.test.jsx b/webapp/tests/client_team.test.jsx
index 012259d0c..5fac2da6d 100644
--- a/webapp/tests/client_team.test.jsx
+++ b/webapp/tests/client_team.test.jsx
@@ -22,22 +22,6 @@ describe('Client.Team', function() {
});
});
- it('signupTeam', function(done) {
- var client = TestHelper.createClient();
- var email = TestHelper.fakeEmail();
-
- client.signupTeam(
- email,
- function(data) {
- assert.equal(data.email, email);
- done();
- },
- function(err) {
- done(new Error(err.message));
- }
- );
- });
-
it('createTeam', function(done) {
var client = TestHelper.createClient();
var team = TestHelper.fakeTeam();