1833 Currency filter error
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
42bec3a944
commit
67fc332b46
|
@ -1,8 +1,9 @@
|
|||
describe('Currency filter', () => {
|
||||
beforeEach(ngModule('vnCore'));
|
||||
let currencyFilter;
|
||||
beforeEach(inject(_currencyFilter_ => {
|
||||
beforeEach(inject((_currencyFilter_, $translate) => {
|
||||
currencyFilter = _currencyFilter_;
|
||||
jest.spyOn($translate, 'use').mockReturnValue('en-US');
|
||||
}));
|
||||
|
||||
it('should return a ONE decimal number as per the argument', () => {
|
||||
|
|
Loading…
Reference in New Issue