test
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
ceb3d1f4cf
commit
7da7e6cfaf
|
@ -1,6 +1,10 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
describe('Percentage filter', () => {
|
describe('Percentage filter', () => {
|
||||||
beforeEach(ngModule('vnCore'));
|
beforeEach(ngModule('vnCore'));
|
||||||
|
let percentageFilter;
|
||||||
|
beforeEach(inject(_percentageFilter_ => {
|
||||||
|
percentageFilter = _percentageFilter_;
|
||||||
|
}));
|
||||||
|
|
||||||
it('should return null for input null', () => {
|
it('should return null for input null', () => {
|
||||||
expect(percentageFilter(null, null)).toBeNull();
|
expect(percentageFilter(null, null)).toBeNull();
|
||||||
|
|
Loading…
Reference in New Issue