@@ -19,7 +19,7 @@ describe("ts-object-transformer", () => {
19
19
// - Values should be function taking SRC[key] and returning a new type NEW_TYPE[key] we want to capture in
20
20
// order to reference it in transformObject()'s result type
21
21
// Let's call this type COMPUTED_MAP
22
- { computed : ( obj ) => `${ obj ?`${ obj . aString } __${ obj . idempotentValue } ` :'' } ` }
22
+ { computed : ( obj ) => `${ obj ?`${ obj . aString } __${ obj . idempotentValue } ` :'' } ` , strlen : ( obj ) => obj . aString . length }
23
23
) ;
24
24
// Result type (NEW_TYPE) should be a map with its keys being the union of SRC keys and COMPUTED_MAP keys with following rules :
25
25
// - If key exists only in SRC, then NEW_TYPE[key] = SRC[key]
@@ -29,7 +29,7 @@ describe("ts-object-transformer", () => {
29
29
// mappedResult = { date: Date.parse("2018-10-04T00:00:00+0200"), date2: new Date(1538604000000), aString: unescape("Hello%20World"), idempotentValue: "foo", computed: "Hello%20World__foo" }
30
30
// .. meaning that expected type would be { date: number, date2: Date, aString: string, idempotentValue: string, computed: string }
31
31
32
- expect ( Object . keys ( transformedResult ) ) . toEqual ( [ 'date' , 'date2' , 'aString' , 'idempotentValue' , 'computed' ] ) ;
32
+ expect ( Object . keys ( transformedResult ) ) . toEqual ( [ 'date' , 'date2' , 'aString' , 'idempotentValue' , 'computed' , 'strlen' ] ) ;
33
33
34
34
let v1 : number = transformedResult . date ; // number, expected
35
35
expect ( typeof v1 ) . toEqual ( 'number' ) ;
@@ -47,6 +47,9 @@ describe("ts-object-transformer", () => {
47
47
let v5 : string = transformedResult . computed ; // string, expected
48
48
expect ( typeof v5 ) . toEqual ( 'string' ) ;
49
49
expect ( v5 ) . toEqual ( 'Hello%20World__foo' ) ;
50
+ let v6 : number = transformedResult . strlen ; // number, expected
51
+ expect ( typeof v6 ) . toEqual ( 'number' ) ;
52
+ expect ( v6 ) . toEqual ( 13 ) ;
50
53
51
54
// transformedResult.blah // doesn't compile, Property 'blah' doesn't exist on type
52
55
} ) ;
0 commit comments