Skip to content

Commit 1f42ae6

Browse files
review
1 parent edbe0d6 commit 1f42ae6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/meteor/tests/end-to-end/api/channels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3061,7 +3061,7 @@ describe('[Channels]', () => {
30613061
after(async () => {
30623062
await Promise.all(
30633063
['p', 'c'].map(async (type: any) => {
3064-
Promise.all([
3064+
return Promise.all([
30653065
deleteRoom({ type, roomId: testChannel._id }),
30663066
deleteRoom({ type, roomId: testRegularChannel._id }),
30673067
deleteRoom({ type, roomId: testTeamChannelForFailure._id }),

apps/meteor/tests/end-to-end/api/groups.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,7 +1951,7 @@ describe('[Groups]', () => {
19511951
.expect(200);
19521952
await Promise.all(
19531953
['p', 'c'].map(async (type: any) => {
1954-
Promise.all([
1954+
return Promise.all([
19551955
deleteRoom({ type, roomId: testRegularGroup._id }),
19561956
deleteRoom({ type, roomId: testTeamGroupForFailure._id }),
19571957
deleteRoom({ type, roomId: testTeamGroupForSuccess._id }),

0 commit comments

Comments
 (0)