omni-dashboard-playwright-reporter
Version:
Playwright client for publishing test results to Omni Dashboard - Transform Your Test Automation with AI-Powered Insights
12 lines (11 loc) • 472 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOmniReporterConfig = getOmniReporterConfig;
function getOmniReporterConfig() {
return {
baseUrl: process.env.OMNI_DASHBOARD_BASE_URL || 'https://omni.testvagrant.ai/api/v1',
projectId: process.env.OMNI_DASHBOARD_PROJECT_ID || '',
apiKey: process.env.OMNI_DASHBOARD_API_KEY || '',
environment: process.env.OMNI_DASHBOARD_ENVIRONMENT || '',
};
}