Tweak mysql2 adapter test suite setup method

This commit is contained in:
Timothy Warren 2016-03-16 09:11:18 -04:00
parent b19dff4142
commit dc750c5cdb
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ let qb = nodeQuery.getQuery();
suite('Mysql2 adapter tests -', () => {
suiteSetup(() => qb.truncate('create_test'));
suiteSetup(done => qb.truncate('create_test').then(() => done()));
test('nodeQuery.getQuery = nodeQuery.init', () => {
expect(nodeQuery.getQuery())