fix: number convertion for plus filter, closes #18

This commit is contained in:
harttle
2016-12-15 22:38:48 +08:00
parent 2c0ba9bfd9
commit 4719544d49
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -133,6 +133,7 @@ describe('filters', function() {
it('should return "12" for 16,4', () => test('{{ 16 | minus: 4 }}', '12'));
it('should return "171.357" for 183.357,12',
() => test('{{ 183.357 | minus: 12 }}', '171.357'));
it('should convert string to number', () => test('{{ "4" | minus: 1 }}', '3'));
});
describe('modulo', function() {
@@ -159,6 +160,7 @@ describe('filters', function() {
it('should return "20" for 16,4', () => test('{{ 16 | plus: 4 }}', '20'));
it('should return "195.357" for 183.357,12',
() => test('{{ 183.357 | plus: 12 }}', '195.357'));
it('should convert string to number', () => test('{{ "4" | plus: 2 }}', '6'));
});
it('should support prepend', function() {