node-sql-fixtures
node-sql-fixtures copied to clipboard
SQL fixtures for Node.js in PostgreSQL, MySQL, MariaDB and SQLite
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
I just found this library. If I understand it right, I should be able to use use it inside a knex seed to create my test rows.. It would be...
I've a database schema (MySQL in my case) which has no key named `id` but it uses `idcustomer` as primary key. In this way, `node-sql-fixtures` can't work. ``` ER_BAD_FIELD_ERROR: Unknown...
var dataSpec = { users : [ { id: 1, email : "[email protected]", register_email : "[email protected]", pass : "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", type : "customer" }, { id: 4, username : "admin_gene", pass...
Add support for greenkeeper to keep dependencies up to date https://github.com/greenkeeperio/greenkeeper
In my integration test suite I insert fixtures in the `beforeEach` hook, and I clear them in the `afterEach` hook. For clearing, I use what you suggest in the readme...