()
| 15 | } |
| 16 | |
| 17 | constructor () { |
| 18 | super() |
| 19 | this.user1 = new User({_id: _.uniqueId()}); |
| 20 | this.supermodel.loadModel(this.user1); |
| 21 | this.user2 = new User({ _id: _.uniqueId() }) |
| 22 | this.supermodel.loadModel(this.user2) |
| 23 | } |
| 24 | |
| 25 | onResourceLoadFailed(e) { |
| 26 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected