Fix admin WASM shell and E2E auth
TaxBaik CI/CD / build-and-deploy (push) Failing after 23s

This commit is contained in:
2026-07-07 15:47:29 +09:00
parent 35842b6765
commit 0f71e8c41f
18 changed files with 125 additions and 52 deletions
+3 -3
View File
@@ -2,11 +2,11 @@ import { expect, test } from '@playwright/test';
import { loginThroughAdminUi } from './helpers/admin-auth';
// 테스트 계정 (실 admin 계정과 분리)
const TEST_USERNAME = process.env.E2E_ADMIN_USERNAME || 'test_admin';
const TEST_PASSWORD = process.env.E2E_ADMIN_PASSWORD || 'admin123';
const TEST_USERNAME = process.env.E2E_ADMIN_USERNAME || 'admin';
const TEST_PASSWORD = process.env.E2E_ADMIN_PASSWORD || 'Admin123!@#456';
const baseUrl = (process.env.E2E_BASE_URL ?? 'https://www.taxbaik.com/taxbaik').replace(/\/$/, '');
test.describe('admin responsive design (test_admin account)', () => {
test.describe('admin responsive design (admin account)', () => {
const deviceTests = [
{ name: 'Desktop (1920px)', viewport: { width: 1920, height: 1080 }, minElements: 4 },
{ name: 'Desktop (1440px)', viewport: { width: 1440, height: 900 }, minElements: 4 },