Skip to content

Commit c11314a

Browse files
committed
Adds a third spec_load test file (for multiple db.load files)
1 parent 7da28d2 commit c11314a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/support/spec_load_third.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = function (db, cb) {
2+
db.define("person", {
3+
name : String
4+
});
5+
6+
setTimeout(function () {
7+
return cb();
8+
}, 200);
9+
};

0 commit comments

Comments
 (0)