File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1+ import { InboundCallbackTypeEnum } from '../../../models/inbound-callback-type-enum' ;
2+
3+ describe ( 'InboundCallbackTypeEnum' , ( ) => {
4+ test ( 'should define the expected values' , ( ) => {
5+ expect ( InboundCallbackTypeEnum . MessageReceived ) . toBe ( 'message-received' ) ;
6+ expect ( InboundCallbackTypeEnum . RequestLocationResponse ) . toBe ( 'request-location-response' ) ;
7+ expect ( InboundCallbackTypeEnum . SuggestionResponse ) . toBe ( 'suggestion-response' ) ;
8+ } ) ;
9+ } ) ;
Original file line number Diff line number Diff line change 1+ import { StatusCallbackTypeEnum } from '../../../models/status-callback-type-enum' ;
2+
3+ describe ( 'StatusCallbackTypeEnum' , ( ) => {
4+ test ( 'should define the expected values' , ( ) => {
5+ expect ( StatusCallbackTypeEnum . MessageSending ) . toBe ( 'message-sending' ) ;
6+ expect ( StatusCallbackTypeEnum . MessageDelivered ) . toBe ( 'message-delivered' ) ;
7+ expect ( StatusCallbackTypeEnum . MessageFailed ) . toBe ( 'message-failed' ) ;
8+ expect ( StatusCallbackTypeEnum . MessageRead ) . toBe ( 'message-read' ) ;
9+ } ) ;
10+ } ) ;
You can’t perform that action at this time.
0 commit comments