@theremjx01/autobot

0.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @theremjx01/autobot

Weekly Downloads

1

Version

0.0.1

License

ISC

Unpacked Size

2.55 kB

Total Files

4

Last publish

Collaborators

  • theremjx01