UNPKG

cypress-aws-secrets-manager

Version:

Cypress Plugin | Integrate the power of AWS Secrets Manager seamlessly into your Cypress tests with the cypress-aws-secrets-manager plugin. This lightweight yet powerful plugin facilitates the secure loading of secrets stored in AWS Secrets Manager direct

15 lines (12 loc) 277 B
const chalk = require("chalk"); const { updateSecret, } = require('./utils'); module.exports = (on, config) => { // Expose plugin tasks on('task', { updateSecret(secretValue) { return updateSecret(config.env, secretValue); } }); }