Skip to content

Commit 030c033

Browse files
committed
chore(): update dependencies May 25
1 parent ae10314 commit 030c033

File tree

3 files changed

+178
-280
lines changed

3 files changed

+178
-280
lines changed

cypress/e2e/demo-endpoints-spec.cy.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,13 @@ describe('Images demo endpoint contains expected information', () => {
149149
expect(response.status).to.eq(200);
150150
});
151151
});
152+
it('checks placeholder image can be resized', () => {
153+
cy.request('/api/images/placeholder.png?height=200&width=300').then(
154+
(response) => {
155+
expect(response.status).to.eq(200);
156+
},
157+
);
158+
});
152159
});
153160

154161
describe('Videos demo endpoint contains expected information', () => {

0 commit comments

Comments
 (0)