0.0.1 • Published 4 years ago

@theremjx01/autobot v0.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

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
    });
}
0.0.1

4 years ago