Postgres: Operations, Hooks, OAuth login, Files support (#2528)
* Adds files related tests through fs-adapter with PG * Schema deletions implementations * Adds Hooks spec * Fix test * Adds support for containsAll (numbers and strings) * Better support for deleteFields and deleteClass * Recursive JSON update for authData * Adds node_modules to travis cache * Disable temporarily to make tests pass * Adds _perishable_token support for _User class * ignore when a table creation fails at init (table exists) * Adds support for AddUnique and Remove * PG 9.4 compatible functions * Re-enable tests * nit * Better handling of schema creation race
This commit is contained in:
@@ -185,7 +185,7 @@ describe('Parse.Query testing', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it_exclude_dbs(['postgres'])("containsAll number array queries", function(done) {
|
||||
it("containsAll number array queries", function(done) {
|
||||
var NumberSet = Parse.Object.extend({ className: "NumberSet" });
|
||||
|
||||
var objectsList = [];
|
||||
@@ -211,7 +211,7 @@ describe('Parse.Query testing', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it_exclude_dbs(['postgres'])("containsAll string array queries", function(done) {
|
||||
it("containsAll string array queries", function(done) {
|
||||
var StringSet = Parse.Object.extend({ className: "StringSet" });
|
||||
|
||||
var objectsList = [];
|
||||
@@ -872,7 +872,7 @@ describe('Parse.Query testing', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it("order by descending number and string", function(done) {
|
||||
it_exclude_dbs(['postgres'])("order by descending number and string", function(done) {
|
||||
var strings = ["a", "b", "c", "d"];
|
||||
var makeBoxedNumber = function(num, i) {
|
||||
return new BoxedNumber({ number: num, string: strings[i] });
|
||||
|
||||
Reference in New Issue
Block a user