pw-api-plugin
Version:
Playwright plugin for comprehensive API testing and result presentation using the Playwright UI, Trace Viewer, and HTML Report. It significantly aids debugging processes and supports both Playwright's native API and Axios requests.
13 lines (12 loc) • 608 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.test = exports.axiosApi = exports.pwApi = void 0;
const pwApi_1 = __importDefault(require("./pwApi"));
exports.pwApi = pwApi_1.default;
const axiosApi_1 = __importDefault(require("./axiosApi"));
exports.axiosApi = axiosApi_1.default;
const testApi_1 = require("./testApi");
Object.defineProperty(exports, "test", { enumerable: true, get: function () { return testApi_1.testApi; } });
;