cartodb-4.42/lib/assets/test/spec/dashboard/data/authenticated-user-model.spec.js

14 lines
437 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
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');
});
});