test: increase wait time for WebAssembly runtime loading
TaxBaik CI/CD / build-and-deploy (push) Failing after 5m6s

Added explicit waits after page navigation and reload to ensure
WebAssembly runtime fully loads before content validation.
This commit is contained in:
2026-07-03 02:31:39 +09:00
parent 5ca1fe8620
commit 04a5e15435
+8
View File
@@ -28,6 +28,14 @@ test('Blog Management Full Flow - Real Domain Validation', async ({ page }) => {
console.log('\n=== 3단계: 블로그 관리 페이지 이동 ===');
await page.goto(`${baseUrl}/admin/blog`, { waitUntil: 'networkidle', timeout: 15000 });
// WebAssembly 런타임 로드 대기
console.log('⏳ WebAssembly 런타임 로드 대기...');
await page.waitForTimeout(3000);
// 페이지 재로드 후 콘텐츠 확인
await page.reload({ waitUntil: 'networkidle', timeout: 15000 });
await page.waitForTimeout(2000);
const blogPageUrl = page.url();
console.log('✓ 블로그 페이지 URL:', blogPageUrl);