30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
import './index.js';
|
|
|
|
describe('InvoiceOut', () => {
|
|
describe('Component summary', () => {
|
|
let controller;
|
|
let $httpBackend;
|
|
let $scope;
|
|
|
|
beforeEach(ngModule('invoiceOut'));
|
|
|
|
beforeEach(inject(($componentController, _$httpBackend_, $rootScope) => {
|
|
$httpBackend = _$httpBackend_;
|
|
$scope = $rootScope.$new();
|
|
const $element = angular.element('<vn-invoice-out-summary></vn-invoice-out-summary>');
|
|
controller = $componentController('vnInvoiceOutSummary', {$element, $scope});
|
|
controller.invoiceOut = {id: 1};
|
|
}));
|
|
|
|
describe('getSummary()', () => {
|
|
it('should perform a query to set summary', () => {
|
|
$httpBackend.when('GET', `InvoiceOuts/1/summary`).respond(200, 'the data you are looking for');
|
|
controller.getSummary();
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.summary).toEqual('the data you are looking for');
|
|
});
|
|
});
|
|
});
|
|
});
|