mirror of https://github.com/vector-im/riot-web
Fix app tests for new startClient method (#20482)
parent
6c1fc8e903
commit
8a9f677a76
|
@ -77,6 +77,7 @@ describe('joining a room', function() {
|
||||||
const ROOM_ALIAS = '#alias:localhost';
|
const ROOM_ALIAS = '#alias:localhost';
|
||||||
const ROOM_ID = '!id:localhost';
|
const ROOM_ID = '!id:localhost';
|
||||||
|
|
||||||
|
httpBackend.when('GET', '/capabilities').respond(200, { capabilities : {} });
|
||||||
httpBackend.when('GET', '/pushrules').respond(200, {});
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
||||||
httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' });
|
httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' });
|
||||||
|
|
||||||
|
|
|
@ -313,6 +313,7 @@ describe('loading:', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('shows the last known room by default', function() {
|
it('shows the last known room by default', function() {
|
||||||
|
httpBackend.when('GET', '/capabilities').respond(200, { capabilities: {} });
|
||||||
httpBackend.when('GET', '/pushrules').respond(200, {});
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
||||||
|
|
||||||
loadApp();
|
loadApp();
|
||||||
|
@ -332,6 +333,7 @@ describe('loading:', function() {
|
||||||
it('shows a home page by default if we have no joined rooms', function() {
|
it('shows a home page by default if we have no joined rooms', function() {
|
||||||
localStorage.removeItem("mx_last_room_id");
|
localStorage.removeItem("mx_last_room_id");
|
||||||
|
|
||||||
|
httpBackend.when('GET', '/capabilities').respond(200, { capabilities : {} });
|
||||||
httpBackend.when('GET', '/pushrules').respond(200, {});
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
||||||
|
|
||||||
loadApp();
|
loadApp();
|
||||||
|
@ -349,6 +351,7 @@ describe('loading:', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('shows a room view if we followed a room link', function() {
|
it('shows a room view if we followed a room link', function() {
|
||||||
|
httpBackend.when('GET', '/capabilities').respond(200, { capabilities : {} });
|
||||||
httpBackend.when('GET', '/pushrules').respond(200, {});
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
||||||
|
|
||||||
loadApp({
|
loadApp({
|
||||||
|
@ -663,6 +666,7 @@ describe('loading:', function() {
|
||||||
// Wait for another trip around the event loop for the UI to update
|
// Wait for another trip around the event loop for the UI to update
|
||||||
return sleep(1);
|
return sleep(1);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
|
httpBackend.when('GET', '/capabilities').respond(200, { capabilities : {} });
|
||||||
httpBackend.when('GET', '/pushrules').respond(200, {});
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
||||||
return expectAndAwaitSync().catch((e) => {
|
return expectAndAwaitSync().catch((e) => {
|
||||||
throw new Error("Never got /sync after login: did the client start?");
|
throw new Error("Never got /sync after login: did the client start?");
|
||||||
|
|
Loading…
Reference in New Issue