2020-03-09 08:00:03 +00:00
|
|
|
import './index';
|
|
|
|
|
|
|
|
describe('component vnUserCard', () => {
|
|
|
|
let controller;
|
|
|
|
let $httpBackend;
|
|
|
|
|
|
|
|
beforeEach(ngModule('account'));
|
|
|
|
|
|
|
|
beforeEach(inject(($componentController, _$httpBackend_) => {
|
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
controller = $componentController('vnUserCard', {$element: null});
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('reload()', () => {
|
|
|
|
it('should reload the controller data', () => {
|
|
|
|
controller.$params.id = 1;
|
|
|
|
|
2023-01-23 14:24:00 +00:00
|
|
|
$httpBackend.expectGET('VnUsers/1').respond('foo');
|
2020-03-09 08:00:03 +00:00
|
|
|
$httpBackend.expectGET('UserAccounts/1/exists').respond({exists: true});
|
|
|
|
controller.reload();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.user).toBe('foo');
|
|
|
|
expect(controller.hasAccount).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|