From 1c162101be4087c312cdb56c2dd0dc228de8dfe4 Mon Sep 17 00:00:00 2001 From: Drew Date: Sat, 28 May 2016 02:27:59 -0700 Subject: [PATCH] Fix database URI (#1911) * Fix database URI * Use database name that is less likely to collide with people's actual databases --- spec/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/helper.js b/spec/helper.js index 8e36b207..43ad0dee 100644 --- a/spec/helper.js +++ b/spec/helper.js @@ -11,7 +11,7 @@ var path = require('path'); var TestUtils = require('../src/index').TestUtils; var MongoStorageAdapter = require('../src/Adapters/Storage/Mongo/MongoStorageAdapter'); -var databaseURI = process.env.DATABASE_URI; +var databaseURI = 'mongodb://localhost:27017/parseServerMongoAdapterTestDatabase'; var port = 8378; // Default server configuration for tests.