1
1
import * as chrono from "../../src/" ;
2
- import { testSingleCase } from "../test_util" ;
2
+ import { testSingleCase , testUnexpectedResult } from "../test_util" ;
3
3
import { Meridiem } from "../../src/" ;
4
4
5
5
test ( "Test - Later Expression" , function ( ) {
@@ -262,6 +262,16 @@ test("Test - From now Expression", () => {
262
262
} ) ;
263
263
264
264
test ( "Test - Strict mode" , function ( ) {
265
+ testSingleCase ( chrono , "the min after" , new Date ( 2012 , 7 , 10 , 12 , 14 ) , ( result ) => {
266
+ expect ( result . index ) . toBe ( 0 ) ;
267
+ expect ( result . text ) . toBe ( "the min after" ) ;
268
+ expect ( result . start . get ( "hour" ) ) . toBe ( 12 ) ;
269
+ expect ( result . start . get ( "minute" ) ) . toBe ( 15 ) ;
270
+ expect ( result . start . get ( "meridiem" ) ) . toBe ( Meridiem . PM ) ;
271
+
272
+ expect ( result . start ) . toBeDate ( new Date ( 2012 , 7 , 10 , 12 , 15 ) ) ;
273
+ } ) ;
274
+
265
275
testSingleCase ( chrono . strict , "15 minutes from now" , new Date ( 2012 , 7 , 10 , 12 , 14 ) , ( result , text ) => {
266
276
expect ( result . text ) . toBe ( text ) ;
267
277
expect ( result . start . get ( "hour" ) ) . toBe ( 12 ) ;
@@ -279,15 +289,8 @@ test("Test - Strict mode", function () {
279
289
expect ( result . start ) . toBeDate ( new Date ( 2012 , 7 , 10 , 13 , 5 ) ) ;
280
290
} ) ;
281
291
282
- testSingleCase ( chrono , "the min after" , new Date ( 2012 , 7 , 10 , 12 , 14 ) , ( result ) => {
283
- expect ( result . index ) . toBe ( 0 ) ;
284
- expect ( result . text ) . toBe ( "the min after" ) ;
285
- expect ( result . start . get ( "hour" ) ) . toBe ( 12 ) ;
286
- expect ( result . start . get ( "minute" ) ) . toBe ( 15 ) ;
287
- expect ( result . start . get ( "meridiem" ) ) . toBe ( Meridiem . PM ) ;
288
-
289
- expect ( result . start ) . toBeDate ( new Date ( 2012 , 7 , 10 , 12 , 15 ) ) ;
290
- } ) ;
292
+ testUnexpectedResult ( chrono . strict , "15m from now" ) ;
293
+ testUnexpectedResult ( chrono . strict , "15s later" ) ;
291
294
} ) ;
292
295
293
296
test ( "Test - After with reference" , ( ) => {
0 commit comments