27 lines
768 B
JavaScript
27 lines
768 B
JavaScript
|
import './index';
|
||
|
|
||
|
describe('vnInvoiceInDescriptor', () => {
|
||
|
let controller;
|
||
|
let $httpBackend;
|
||
|
|
||
|
beforeEach(ngModule('invoiceIn'));
|
||
|
|
||
|
beforeEach(inject(($componentController, _$httpBackend_) => {
|
||
|
$httpBackend = _$httpBackend_;
|
||
|
controller = $componentController('vnInvoiceInDescriptor', {$element: null});
|
||
|
}));
|
||
|
|
||
|
describe('loadData()', () => {
|
||
|
it(`should perform a get query to store the invoice in data into the controller`, () => {
|
||
|
const id = 1;
|
||
|
const response = {id: 1};
|
||
|
|
||
|
$httpBackend.expectGET(`InvoiceIns/${id}`).respond(response);
|
||
|
controller.id = id;
|
||
|
$httpBackend.flush();
|
||
|
|
||
|
expect(controller.invoiceIn).toEqual(response);
|
||
|
});
|
||
|
});
|
||
|
});
|