Psst. Removed console logs from debug hunt.

This commit is contained in:
2017-12-21 01:01:43 +01:00
parent 601440d540
commit d92e6d8c78

View File

@@ -75,7 +75,6 @@ class SqliteDatabase {
*/
tearDown() {
const tearDownSchema = this.readSqlFile('tearDown.sql');
console.log(tearDownSchema);
return this.execute(tearDownSchema);
}
@@ -84,11 +83,8 @@ class SqliteDatabase {
* @returns {String}
*/
readSqlFile(filename) {
console.log(filename)
const schemaPath = path.join(this.schemaDirectory, filename);
console.log(schemaPath)
const schema = fs.readFileSync(schemaPath).toString('utf-8');
console.log('schema: ', schema)
return schema;
}
}