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
+1 -1
View File
@@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
import { loginThroughAdminUi } from './helpers/admin-auth';
const username = process.env.E2E_ADMIN_USERNAME ?? 'admin';
const password = process.env.E2E_ADMIN_PASSWORD;
const password = process.env.E2E_ADMIN_PASSWORD || 'Admin123!@#456';
const baseUrl = (process.env.E2E_BASE_URL ?? 'https://www.taxbaik.com/taxbaik').replace(/\/$/, '');
test.describe('blog CRUD operations', () => {