crud model test
This commit is contained in:
parent
f900b7ef62
commit
0f19247f17
|
@ -73,17 +73,6 @@ describe('Component vnCrudModel', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('autoRefresh()', () => {
|
||||
it('', () => {
|
||||
// spyOn(controller, 'autoRefresh');
|
||||
// spyOn(controller, 'clear');
|
||||
|
||||
// controller.url = '/TestUrl';
|
||||
|
||||
// expect(controller.url).toEqual('/TestUrl');
|
||||
});
|
||||
});
|
||||
|
||||
describe('buildFilter()', () => {
|
||||
it('should build a filter and return it', () => {
|
||||
controller.order = 'id ASC';
|
||||
|
@ -226,13 +215,18 @@ describe('Component vnCrudModel', () => {
|
|||
});
|
||||
});
|
||||
|
||||
xdescribe('onRemoteError()', () => {
|
||||
describe('onRemoteError()', () => {
|
||||
it('should check the error', () => {
|
||||
spyOn(controller, 'onRequestEnd');
|
||||
|
||||
controller.onRemoteError();
|
||||
let error;
|
||||
try {
|
||||
controller.onRemoteError('TestError');
|
||||
} catch (e) {
|
||||
error = e.message;
|
||||
}
|
||||
|
||||
// expect(controller.url).toEqual('/TestUrl');
|
||||
expect(error).toBe('errasdor');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue