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 7b068ab commit 20b77a3Copy full SHA for 20b77a3
tests/server.js
@@ -3,7 +3,6 @@ import { ParseServer } from 'parse-server';
3
import path from 'path';
4
import fs from 'fs';
5
import https from 'https';
6
-import http from 'http';
7
import emailAdapter from './MockEmailAdapter.js';
8
const app = express();
9
const __dirname = path.resolve();
@@ -102,7 +101,7 @@ server.listen(options.port, function() {
102
101
});
103
104
// Create TLS request
105
-var requestOptions = {
+const requestOptions = {
106
hostname: 'localhost',
107
port: options.port,
108
path: '/parse/health',
0 commit comments