Fix Playwright BASE_URL handling and failed UAT report tests

This commit is contained in:
A R R R Associates
2026-06-26 20:38:14 +05:30
parent 21c90749fb
commit ce9935c684
21 changed files with 98 additions and 53 deletions
+1 -1
View File
@@ -1,8 +1,8 @@
// Standalone runner: executes the API-level (no-browser) security checks
// from the v2.0.4 suite against a live ERP. Produces JSON results.
const { request } = require('@playwright/test');
const { BASE_URL, absoluteUrl } = require('./fixtures/url');
const BASE_URL = process.env.BASE_URL || 'http://127.0.0.1:8000';
const results = [];
function record(id, title, status, detail) {