Tweaks to cypress suite
All checks were successful
Close stale issues and PRs / stale (push) Successful in 20s

This commit is contained in:
Jamie Curnow
2025-11-18 07:21:06 +10:00
parent 9b4c34915c
commit 316b758455
5 changed files with 54 additions and 35 deletions

View File

@@ -1,4 +1,5 @@
const { SwaggerValidation } = require('@jc21/cypress-swagger-validation');
const chalk = require('chalk');
module.exports = (on, config) => {
// Replace swaggerBase config var wildcard
@@ -11,7 +12,7 @@ module.exports = (on, config) => {
on('task', require('./backendApi/task')(config));
on('task', {
log(message) {
console.log(message);
console.log(`${chalk.cyan.bold('[')}${chalk.blue.bold('LOG')}${chalk.cyan.bold(']')} ${chalk.red.bold(message)}`);
return null;
}
});