cartodb-4.42/lib/assets/test/spec/dashboard/data/authenticated-user-model.spec.js
2024-04-06 05:25:13 +00:00

14 lines
437 B
JavaScript

var AuthenticatedUser = require('dashboard/data/authenticated-user-model');
describe('dashboard/data/authenticated-user-model', function () {
beforeEach(function () {
this.model = new AuthenticatedUser({});
});
it('should return the normal URL', function () {
spyOn(this.model, 'getHost').and.returnValue('test.carto.com');
expect(this.model.url()).toBe('//test.carto.com/api/v1/get_authenticated_users');
});
});