Skip to content

Commit 7fdf177

Browse files
committed
test: all tests are passing because of empty model discovery
Signed-off-by: Muhammad Aaqil <[email protected]>
1 parent b057c20 commit 7fdf177

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/mysql.discover.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,11 @@ describe('Discover model generated columns', function() {
242242
it('should return an array of columns for STRONGLOOP.TESTGEN and the first is generated', function(done) {
243243
db.discoverModelProperties('testgen', function(err, models) {
244244
if (err) return done(err);
245+
console.log('[[[[[[[[[[[models]]]]]]]]]]]');
246+
console.log(models);
247+
console.log(models.length);
248+
console.log('[[[[[[[[[[[models]]]]]]]]]]]');
249+
245250
models.forEach(function(model) {
246251
assert(model.tableName.toLowerCase() === 'testgen');
247252
if (model.columnName === 'ID') {

0 commit comments

Comments
 (0)