Refactored field utilities.

This commit is contained in:
Beka Westberg
2019-08-08 10:45:01 -07:00
parent f539dbe6f6
commit cdc90f4059
21 changed files with 214 additions and 165 deletions

View File

@@ -19,7 +19,7 @@
*/
suite('Abstract Fields', function() {
suite.skip('Is Serializable', function() {
suite('Is Serializable', function() {
// Both EDITABLE and SERIALIZABLE are default.
function FieldDefault() {
this.name = 'NAME';
@@ -72,7 +72,7 @@ suite('Abstract Fields', function() {
assertEquals(true, field.isSerializable());
});
});
suite.skip('setValue', function() {
suite('setValue', function() {
function addSpies(field) {
if (!this.isSpying) {
sinon.spy(field, 'doValueInvalid_');