()
| 306 | } |
| 307 | |
| 308 | function createTestUser() { |
| 309 | const user = new Parse.User(); |
| 310 | user.set('username', 'test'); |
| 311 | user.set('password', 'moon-y'); |
| 312 | return user.signUp(); |
| 313 | } |
| 314 | |
| 315 | // Shims for compatibility with the old qunit tests. |
| 316 | function ok(bool, message) { |
no outgoing calls