diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-11-05 11:28:22 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-11-05 11:28:22 +0000 |
commit | 42081b1937127979f3fb0a673eefb866cb4de64e (patch) | |
tree | 3080249fc341db2dd61b607dd78b08d89d6e3b04 /syweb/webclient/test/unit | |
parent | Be sure to urlencode/decode event types correctly in both the web client and HS. (diff) | |
download | synapse-42081b1937127979f3fb0a673eefb866cb4de64e.tar.xz |
Don't urlencode event types just yet so older HSes don't 500.
Skip the tests which test for urlencoding, and add a TODO in matrixService.
Diffstat (limited to 'syweb/webclient/test/unit')
-rw-r--r-- | syweb/webclient/test/unit/matrix-service.spec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syweb/webclient/test/unit/matrix-service.spec.js b/syweb/webclient/test/unit/matrix-service.spec.js index b54163a641..ed290f2ff3 100644 --- a/syweb/webclient/test/unit/matrix-service.spec.js +++ b/syweb/webclient/test/unit/matrix-service.spec.js @@ -231,7 +231,7 @@ describe('MatrixService', function() { httpBackend.flush(); })); - it('should be able to send generic state events without a state key', inject( + xit('should be able to send generic state events without a state key', inject( function(matrixService) { matrixService.setConfig({ access_token: "foobar", @@ -255,7 +255,7 @@ describe('MatrixService', function() { httpBackend.flush(); })); - it('should be able to send generic state events with a state key', inject( + xit('should be able to send generic state events with a state key', inject( function(matrixService) { matrixService.setConfig({ access_token: "foobar", |