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 36202ba commit a56fe0fCopy full SHA for a56fe0f
spec/index.spec.js
@@ -157,14 +157,14 @@ describe('server', () => {
157
158
it('can report the server version', done => {
159
request.get({
160
- url: 'http://localhost:8378/1/features',
+ url: 'http://localhost:8378/1/serverInfo',
161
headers: {
162
'X-Parse-Application-Id': 'test',
163
'X-Parse-Master-Key': 'test',
164
},
165
json: true,
166
}, (error, response, body) => {
167
- expect(body.serverVersion).toEqual(parseServerPackage.version);
+ expect(body.parseServerVersion).toEqual(parseServerPackage.version);
168
done();
169
})
170
});
0 commit comments