1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/ts-openapi/cypress/plugins/index.js
2020-10-08 10:39:34 +09:00

7 lines
206 B
JavaScript

/// <reference types="cypress" />
const { SwaggerValidation } = require("@jc21/cypress-swagger-validation");
module.exports = (on, config) => {
on("task", SwaggerValidation(config));
return config;
};