Skip to content

Commit f9bc391

Browse files
committed
Fix E2E tests
1 parent fb978e4 commit f9bc391

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

packages/conversation/tests/rest/v1/messages/messages.steps.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,32 @@ When('I send a request to delete a message', async () => {
136136
Then('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+
});

0 commit comments

Comments
 (0)