Files
pleno-vue/tests/e2e/support/projects.ts
T
Jeppe Bundgaard bef9eaeb72 Add unit tests and new components for edge gateway workflows:
- Introduced unit tests for edge gateway workflow helpers, including workflow step resolution, incident action mapping, relay health row formatting, and workspace state merging.
- Added new components for advanced operations, configuration panel, context panel, fleet rail, and health summary.
- Enhanced gateway management UI with support for advanced actions, fallback operations, relay health visualization, and device binding features.
2026-04-16 13:44:36 +02:00

10 lines
272 B
TypeScript

import type { TestInfo } from "@playwright/test";
export function isCompactProject(testInfo: TestInfo) {
return /(mobile|tablet)/i.test(testInfo.project.name);
}
export function isDesktopProject(testInfo: TestInfo) {
return /desktop/i.test(testInfo.project.name);
}