Suppress Test Logs (#6256)

* Suppress Test Logs

This will reduce some of the noise in the tests logs.

* replace deprecated buffer

* remove deprecation warnings

* fix geopoint

* Fix GraphQL

* postgres warnings
This commit is contained in:
Diamond Lewis
2019-12-03 18:21:12 -06:00
committed by GitHub
parent 188f033330
commit 985933955f
15 changed files with 867 additions and 669 deletions

View File

@@ -36,6 +36,7 @@ describe('Server Url Checks', () => {
});
it('mark bad server url', done => {
spyOn(console, 'warn').and.callFake(() => {});
Parse.serverURL = 'notavalidurl';
ParseServer.verifyServerUrl(function(result) {
if (result) {