File tree Expand file tree Collapse file tree
packages/conversation/tests/rest/v1/messages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,3 +136,32 @@ When('I send a request to delete a message', async () => {
136136Then ( 'the delete message response contains no data' , ( ) => {
137137 assert . deepEqual ( deleteMessageResponse , { } ) ;
138138} ) ;
139+
140+ When ( 'I send a request to list the last messages sent to specified channel identities' , async ( ) => {
141+ // TODO
142+ } ) ;
143+
144+ Then ( 'the response contains {string} last messages sent to specified channel identities' , ( expectedAnswer : string ) => {
145+ // TODO
146+ assert . equal ( expectedAnswer , expectedAnswer ) ;
147+ } ) ;
148+
149+ When ( 'I send a request to list all the last messages sent to specified channel identities' , async ( ) => {
150+ // TODO
151+ } ) ;
152+
153+ When ( 'I iterate manually over the last messages sent to specified channel identities pages' , async ( ) => {
154+ // TODO
155+ } ) ;
156+
157+ // eslint-disable-next-line max-len
158+ Then ( 'the response list contains {string} last messages sent to specified channel identities' , ( expectedAnswer : string ) => {
159+ // TODO
160+ assert . equal ( expectedAnswer , expectedAnswer ) ;
161+ } ) ;
162+
163+ // eslint-disable-next-line max-len
164+ Then ( 'the result contains the data from {string} pages of last messages sent to specified channel identities' , ( expectedAnswer : string ) => {
165+ // TODO
166+ assert . equal ( expectedAnswer , expectedAnswer ) ;
167+ } ) ;
You can’t perform that action at this time.
0 commit comments