-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
coreCore models and utilitiesCore models and utilitiesfeatureChanges that affect the APIChanges that affect the API
Description
Often a model will need to be instantiated with no data. Though in many cases this violates the DLx spec (for example, the Language model requires a name field), it's necessary to allow this for data entry purposes.
Tests
it(`new Language()`, function() {
expect(() => new Language()).not.toThrow();
expect(() => new Language({})).not.toThrow();
});Metadata
Metadata
Assignees
Labels
coreCore models and utilitiesCore models and utilitiesfeatureChanges that affect the APIChanges that affect the API