test
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Javi Gallego 2020-04-30 08:13:25 +02:00
parent ceb3d1f4cf
commit 7da7e6cfaf
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
'use strict';
describe('Percentage filter', () => {
beforeEach(ngModule('vnCore'));
let percentageFilter;
beforeEach(inject(_percentageFilter_ => {
percentageFilter = _percentageFilter_;
}));
it('should return null for input null', () => {
expect(percentageFilter(null, null)).toBeNull();