UNPKG

e2ed

Version:

E2E testing framework over Playwright

14 lines (13 loc) 453 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clearUpload = void 0; const log_1 = require("../utils/log"); /** * Removes all file paths from the specified file upload input. */ const clearUpload = (selector) => { (0, log_1.log)('Remove all file paths from file upload input', { selector }, 5 /* LogEventType.InternalAction */); // TODO return Promise.resolve(); }; exports.clearUpload = clearUpload;