Last active
February 2, 2021 14:34
-
-
Save odigity/7f37077de74964051d45c4ca80ec3250 to your computer and use it in GitHub Desktop.
Wrapping a unit test in a transaction for easy cleanup with Knex.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/node | |
const Promise = require('bluebird') | |
const config = require('./config.json') | |
const knex = require('./lib/knex')(config.database).connection() | |
const mock = () => ({ user_id: Math.floor(Math.random() * 999) + 1, payload_type: 'foo', attributes: JSON.stringify({}) }) | |
const before = (t) => { | |
console.log('before') | |
const tmp = {} | |
const p = new Promise( (resolve, reject) => tmp.resolve = resolve ) | |
knex.transaction( tx => { t.tx = tx; tmp.resolve() } ).catch( () => {} ) | |
return p | |
} | |
const test = async (t) => { | |
console.log('test') | |
let m1 = mock(), m2 = mock() | |
await t.tx('notifications').insert(m1) | |
await t.tx('notifications').insert(m2) | |
} | |
const after = (t) => { | |
console.log('after') | |
// return t.tx.commit() | |
return t.tx.rollback() | |
} | |
let t = {} | |
before(t) | |
.then( () => test(t) ) | |
.then( () => after(t) ) | |
.catch( e => console.log(`e: ${e}`) ) |
catch(() => {}); //why things not working if remove this line?
knex turns the rollback into an exception which then fails the ava test
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for ava, we can write like this:
I'm just not sure why things will be not working if we removed the empty catch block. any ideas?