25 lines
800 B
JavaScript
25 lines
800 B
JavaScript
import './index';
|
|
|
|
describe('Client', () => {
|
|
describe('Component vnClientCard', () => {
|
|
let $componentController;
|
|
let $scope;
|
|
let controller;
|
|
|
|
beforeEach(angular.mock.module('client', $translateProvider => {
|
|
$translateProvider.translations('en', {});
|
|
}));
|
|
|
|
beforeEach(angular.mock.inject((_$componentController_, $rootScope) => {
|
|
$componentController = _$componentController_;
|
|
$scope = $rootScope;
|
|
controller = $componentController('vnClientCard', {$scope: $scope});
|
|
}));
|
|
|
|
it('should define and set client property to null in the module instance', () => {
|
|
expect(controller.client).toBeDefined();
|
|
expect(controller.client).toBe(null);
|
|
});
|
|
});
|
|
});
|