mirror of
https://github.com/knex/knex.git
synced 2025-09-24 07:33:50 +00:00
12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
|
|
module.exports = function(Knex, dbName, handler, type) {
|
|
|
|
it('has a sum', function(ok) {
|
|
|
|
Knex('accounts')
|
|
.sum('logins')
|
|
.then(handler(ok), ok);
|
|
|
|
});
|
|
|
|
}; |