-
-
Couldn't load subscription status.
- Fork 600
Closed
Labels
type:bugImpaired feature or lacking behavior that is likely assumedImpaired feature or lacking behavior that is likely assumed
Description
class CustomUser extends ParseUser {
customMethod() {
return 'a';
}
}
ParseObject.registerSubclass(ParseUser.className, CustomUser);
CustomUser.logIn('username', 'password').then((u) => {
expect(u instanceof CustomUser).toBe(true);
expect(u.customMethod()).toBe('a');
});Failing test case:
drinklynk@0a9fa9c
Metadata
Metadata
Assignees
Labels
type:bugImpaired feature or lacking behavior that is likely assumedImpaired feature or lacking behavior that is likely assumed