Skip to content

Commit fe1cf47

Browse files
author
Marvel Mathew
committed
Only run integration tests on MongoDB
1 parent f5c9454 commit fe1cf47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/ParseQuery.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3108,7 +3108,7 @@ describe('Parse.Query testing', () => {
31083108
}).catch(done.fail);
31093109
});
31103110

3111-
it('should handle relative times correctly', function(done) {
3111+
it_only_db('mongo')('should handle relative times correctly', function(done) {
31123112
const now = Date.now();
31133113
const obj1 = new Parse.Object('MyCustomObject', {
31143114
name: 'obj1',
@@ -3148,7 +3148,7 @@ describe('Parse.Query testing', () => {
31483148
.then(done, done.fail);
31493149
});
31503150

3151-
it('should error on invalid relative time', function(done) {
3151+
it_only_db('mongo')('should error on invalid relative time', function(done) {
31523152
const obj1 = new Parse.Object('MyCustomObject', {
31533153
name: 'obj1',
31543154
ttl: new Date(Date.now() + 2 * 24 * 60 * 60 * 1000), // 2 days from now

0 commit comments

Comments
 (0)