@theremjx01/autobot
v0.0.1
Published
Some cypress plugins you may need
Downloads
2
Readme
autobot
A project of some useful cypress stuff you may love
@TODO: graphql request plugins
raw-sql-plugin
Usage:
In cypress.env.json
, add your database connection config.
Here is the example, please replace with your db config
{
"databaseOptions": {
"host": "localhost",
"user": "john.doe",
"database": "hello.world",
"password": "my.p@ssword",
"client": "mysql2"
}
}
In plugins/index.js
of your project, add these line:
const { rawSqlHandler } = require('@theremjx01/autobot');
module.exports = (on, config) => {
// ... other plugins event
on('task', {
rawSQL(args) {
return rawSQLHandler(on, config)(args);
},
//... other task
});
}