Skip to content

Commit

Permalink
add alias only on meteor 3
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardoventurini committed Nov 16, 2023
1 parent 89dd0bc commit 0ed2d32
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ Tinytest.addAsync(
function (test, done) {
MeteorX.onReady(function() {
test.isNotNull(MeteorX.SynchronousCursor.prototype);
test.isNotNull(MeteorX.AsynchronousCursor.prototype);

if (Meteor.release.startsWith('[email protected]')) {
test.isNotNull(MeteorX.AsynchronousCursor.prototype);
}

done();
});
}
Expand Down

0 comments on commit 0ed2d32

Please sign in to comment.