UNPKG

@tshifhiwa/ohrm-ui-automation-framework

Version:

Playwright and TypeScript–based test automation framework for validating core UI features and workflows of the OrangeHRM demo application.

12 lines (10 loc) 277 B
import os from "os"; export default class SystemInfo { /** * Gets the current system user's username. * @returns Username or "system" if unavailable */ public static getCurrentUsername(): string { return os.userInfo?.().username ?? "system"; } }