fixed hanged tests issue

This commit is contained in:
Anatoly 2018-02-12 23:51:54 +02:00
parent b220a39c8d
commit 7ea1808201
3 changed files with 1 additions and 3 deletions

View file

@ -86,7 +86,6 @@ module.exports = testSchemaProcessor => {
const time = `${ data.timestamp.getHours() }:${ data.timestamp.getMinutes() }:${ data.timestamp.getSeconds() }`;
tape.equal(`${ date } ${ time }`, '2018-11-11 22:21:20');
tape.end();
resolve();
});
});

View file

@ -115,7 +115,6 @@ module.exports = testSchemaProcessor => {
tape.equal(actualColumnType, expectedColumnType);
}
tape.end();
resolve();
});
});

View file

@ -57,7 +57,7 @@ module.exports = testSchemaProcessor => {
hasSchemaCreated(testSchemaProcessor).then(schemaExists => {
tape.equal(typeof schemaExists, 'boolean');
tape.equal(schemaExists, true);
tape.end();
resolve();
});
});