1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/ts-openapi/cypress/plugins/index.js

8 lines
206 B
JavaScript
Raw Normal View History

2020-10-08 10:39:34 +09:00
/// <reference types="cypress" />
const { SwaggerValidation } = require("@jc21/cypress-swagger-validation");
module.exports = (on, config) => {
on("task", SwaggerValidation(config));
return config;
};