diff --git a/test/app-tests/loading-test.js b/test/app-tests/loading-test.js index 090024f0a..fd4d39703 100644 --- a/test/app-tests/loading-test.js +++ b/test/app-tests/loading-test.js @@ -464,7 +464,7 @@ describe('loading:', function() { assertAtLoadingSpinner(matrixChat); httpBackend.when('POST', '/register').check(function(req) { - expect(req.path).toStartWith(DEFAULT_HS_URL); + expect(req.path.startsWith(DEFAULT_HS_URL)).toBe(true); expect(req.queryParams.kind).toEqual('guest'); }).respond(200, { user_id: "@guest:localhost", @@ -477,7 +477,7 @@ describe('loading:', function() { }).then(() => { return expectAndAwaitSync({isGuest: true}); }).then((req) => { - expect(req.path).toStartWith(DEFAULT_HS_URL); + expect(req.path.startsWith(DEFAULT_HS_URL)).toBe(true); // once the sync completes, we should have a welcome page httpBackend.verifyNoOutstandingExpectation();