Skip to content

Commit 82e0a59

Browse files
jeacott1flovilmart
jeacott1
authored andcommitted
missing return in test. (#3645)
1 parent 51b5193 commit 82e0a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/PushController.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ describe('PushController', () => {
519519
reconfigureServer({
520520
push: { adapter: pushAdapter }
521521
}).then(() => {
522-
pushController.sendPush(payload, where, config, auth)
522+
return pushController.sendPush(payload, where, config, auth)
523523
}).then(() => {
524524
done();
525525
}).catch(() => {

0 commit comments

Comments
 (0)