Skip to content

Commit ceac75d

Browse files
committed
Added missing semicolons.
1 parent 2428892 commit ceac75d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

mocha.start.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ TestRunner.init({
4444
});
4545

4646
beforeEach(function () {
47-
globals.DSUtils = global.DSUtils = this.$$DSUtils
48-
globals.DSErrors = global.DSErrors = this.$$DSErrors
49-
globals.adapter = global.adapter = this.$$adapter
50-
globals.User = global.User = this.$$User
47+
globals.DSUtils = global.DSUtils = this.$$DSUtils;
48+
globals.DSErrors = global.DSErrors = this.$$DSErrors;
49+
globals.adapter = global.adapter = this.$$adapter;
50+
globals.store = global.store = this.$$store;
51+
globals.User = global.User = this.$$User;
5152
globals.Profile = global.Profile = this.$$Profile;
5253
globals.Post = global.Post = this.$$Post;
5354
globals.Comment = global.Comment = this.$$Comment;

0 commit comments

Comments
 (0)