Skip to content

Commit 03ae5e4

Browse files
committed
Can't do hasMany() testing with mapsTo on MongoDB
1 parent 088cd9f commit 03ae5e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/association-hasmany-mapsto.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ var ORM = require('../../');
55
var common = require('../common');
66
var protocol = common.protocol();
77

8-
describe("hasMany", function () {
8+
if (common.protocol() == "mongodb") return; // Can't do mapsTo testing on mongoDB ()
9+
10+
describe("hasMany with mapsTo", function () {
911
this.timeout(4000);
1012
var db = null;
1113
var Person = null;

0 commit comments

Comments
 (0)