ci: enable more tests on Postgres adapter (#7641)

This commit is contained in:
Corey
2021-10-18 10:51:56 -04:00
committed by GitHub
parent 80bf578cbd
commit b5fc0d59db
6 changed files with 113 additions and 111 deletions

View File

@@ -223,7 +223,7 @@ describe('Parse.Object testing', () => {
});
});
it_exclude_dbs(['postgres'])('can set null', function (done) {
it('can set null', function (done) {
const obj = new Parse.Object('TestObject');
obj.set('foo', null);
obj.save().then(
@@ -232,7 +232,7 @@ describe('Parse.Object testing', () => {
equal(obj.get('foo'), null);
});
on_db('postgres', () => {
fail('should not succeed');
equal(obj.get('foo'), null);
});
done();
},