We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b307f1f commit 7f100f3Copy full SHA for 7f100f3
spec/helper.js
@@ -190,16 +190,13 @@ beforeAll(async () => {
190
Parse.serverURL = 'http://localhost:' + port + '/1';
191
});
192
193
-let count = 0;
194
afterEach(function (done) {
195
const afterLogOut = async () => {
196
if (Object.keys(openConnections).length > 0) {
197
fail('There were open connections to the server left after the test finished');
198
}
199
await TestUtils.destroyAllDataPermanently(true);
200
if (didChangeConfiguration) {
201
- count += 1;
202
- console.log(count);
203
await reconfigureServer();
204
} else {
205
await databaseAdapter.performInitialization({ VolatileClassesSchemas });
0 commit comments