mirror of
https://github.com/knex/knex.git
synced 2025-08-11 10:10:56 +00:00
15 lines
229 B
JavaScript
15 lines
229 B
JavaScript
module.exports = function(knex) {
|
|
|
|
describe('deletes', function () {
|
|
|
|
it('should delete an item', function() {
|
|
|
|
return knex('accounts')
|
|
.where({'email':'test2@example.com'})
|
|
.del();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}; |