add missing external test

these tests existed in moment-tests.ts but were missing in
moment-external-tests.ts
This commit is contained in:
Tobias Bengfort
2014-09-24 12:19:31 +02:00
parent 4c9f4a5240
commit b33c9ec8a7
+7
View File
@@ -87,6 +87,13 @@ m2.add('hours', 24).hours();
var duration = moment.duration({'days': 1});
moment([2012, 0, 31]).add(duration);
moment().add('seconds', 1);
moment().add('seconds', '1');
moment().add(1, 'seconds');
moment().add('1', 'seconds');
moment().add('seconds', '1');
moment().subtract('days', 7);
moment().seconds(30);