Tim Griesser 232fe9f151
Add Prettier (#2697)
* Add prettier
* Run files through prettier
2018-07-09 08:10:34 -04:00

19 lines
369 B
JavaScript

/*global describe, it*/
'use strict';
module.exports = function(knex) {
describe('unions', function() {
it('handles unions', function() {
return knex('accounts')
.select('*')
.where('id', '=', 1)
.union(function() {
this.select('*')
.from('accounts')
.where('id', 2);
});
});
});
};