Skip to content

Commit 6ab6ec9

Browse files
committed
handle Parse.Push
1 parent aa7ffb8 commit 6ab6ec9

File tree

5 files changed

+433
-783
lines changed

5 files changed

+433
-783
lines changed

spec/CLI.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ describe('execution', () => {
209209
const binPath = path.resolve(__dirname, '../bin/parse-server');
210210
let childProcess;
211211

212-
afterEach(async done => {
212+
afterEach(done => {
213213
if (childProcess) {
214214
childProcess.on('close', () => {
215215
childProcess = undefined;

spec/EnableSingleSchemaCache.spec.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ describe('Enable single schema cache', () => {
1515
afterAll(async () => {
1616
await reconfigureServer();
1717
});
18-
1918
it('can perform multiple create and query operations', done => {
2019
let config = fakeRequestForConfig();
2120
let nobody = auth.nobody(config);

spec/Logger.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('WinstonLogger', () => {
4141
.then(done);
4242
});
4343

44-
it('should have a timestamp', async done => {
44+
it('should have a timestamp', done => {
4545
logging.logger.info('hi');
4646
logging.logger.query({ limit: 1 }, (err, results) => {
4747
if (err) {

0 commit comments

Comments
 (0)