Skip to content

Commit 8f0ae70

Browse files
kulshekharflovilmart
authored andcommitted
Enable a few tests to test against Postgres (#2971)
* Enable RestCreate related tests for Postgres * Enable tests in ParseRole for postgres * Enable one ParseObject test for postgres * Improve the way a jsonb field is updated. * Use Postgres 9.5 in Travis * Install Postgres 9.5 in Travis * Use sudo to install and setup Postgres 9.5 in Travis * Test if Postgres 9.5 can be used with trusty * Re-exclude a test for postgres * Revert travis to its original form
1 parent 5c4806b commit 8f0ae70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/ParseObject.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ describe('Parse.Object testing', () => {
10661066
});
10671067
});
10681068

1069-
it_exclude_dbs(['postgres'])("saving children in an array", function(done) {
1069+
it("saving children in an array", function(done) {
10701070
var Parent = Parse.Object.extend("Parent");
10711071
var Child = Parse.Object.extend("Child");
10721072

spec/ParseRole.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('Parse Role testing', () => {
7676
return role.save({}, { useMasterKey: true });
7777
};
7878

79-
it_exclude_dbs(['postgres'])("should not recursively load the same role multiple times", (done) => {
79+
it("should not recursively load the same role multiple times", (done) => {
8080
var rootRole = "RootRole";
8181
var roleNames = ["FooRole", "BarRole", "BazRole"];
8282
var allRoles = [rootRole].concat(roleNames);

0 commit comments

Comments
 (0)