Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lejeanbono/cypress-mysql

Cypress plugin to easily request MySQL database
https://github.com/lejeanbono/cypress-mysql

cypress cypress-plugin database e2e mysql testing-tools

Last synced: 3 months ago
JSON representation

Cypress plugin to easily request MySQL database

Awesome Lists containing this project

README

        

# Cypress MySQL Plugin

![build](https://github.com/LeJeanbono/cypress-mysql/actions/workflows/ci.yml/badge.svg)
![cypress](https://img.shields.io/badge/Cypress-9.x-success)
![mysql](https://img.shields.io/badge/MySQL-5.7-blue)

## Query

```javascript
cy.query('SELECT * FROM myTable').then(datas => {
// array object
})
```

```javascript
cy.query('SELECT * FROM myTable').then(datas => {
// array MyObject
})
```

## SELECT

```javascript
// SELECT * FROM myTable
cy.selectAll({ table: 'myTable' }).then(datas => {
// array object
})
```

```javascript
// SELECT * FROM myTable
cy.selectAll({ table: 'myTable' }).then(datas => {
// array MyObject
})
```

## CREATE

## DROP

## DELETE

## INSERT