mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
|
/// <reference types="cypress" />
|
||
|
const { SwaggerValidation } = require("@jc21/cypress-swagger-validation");
|
||
|
|
||
|
module.exports = (on, config) => {
|
||
|
on("task", SwaggerValidation(config));
|
||
|
return config;
|
||
|
};
|