Skip to content

Commit a3c35fc

Browse files
committed
feat(test): Update test suite
1 parent ebe9c12 commit a3c35fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
20.6 KB
Loading

e2e/shared/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ export const waitImages = async ({
9696
width: scrollWidth,
9797
};
9898
});
99-
// FIXME: posts/desktop 에서 높이가 틀어지는 문제가 있음. 임시방편.
100-
if (projectName === 'desktop') {
101-
viewportSize.height = 6_500;
99+
// FIXME: posts 에서 높이가 틀어지는 문제가 있음. 임시방편.
100+
if (projectName === 'desktop' || projectName === 'mobile') {
101+
viewportSize.height = projectName === 'desktop' ? 6_500 : 11_000;
102102
}
103103
await page.setViewportSize(viewportSize);
104104

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)