salix/services/client/common/methods/greuge/specs/total.spec.js

20 lines
661 B
JavaScript
Raw Normal View History

const totalGreuge = require('../total');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
2018-01-19 12:07:03 +00:00
describe('Greuge totalGreuge()', () => {
it('should call the sumAmount method', done => {
let clientFk = 1;
let self = jasmine.createSpyObj('self', ['remoteMethod', 'rawSql']);
self.rawSql.and.returnValue(Promise.resolve([{sumAmount: 6000}]));
totalGreuge(self);
let callback = (error, result) => {
if (error) return catchErrors(done)(error);
expect(result).toBe(6000);
done();
};
self.sumAmount(clientFk, callback);
});
});