You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when running this code:
var schema = {type: 'object'};
amanda.validate([], schema, function(error) {console.log('error:', error);});
an error is returned with the wrong message.
actual:
'The '' property must be a/an 'object'. The type of the property is 'object''
expected:
'The '' property must be a/an 'object'. The type of the property is 'array''
The text was updated successfully, but these errors were encountered:
when running this code:
var schema = {type: 'object'};
amanda.validate([], schema, function(error) {console.log('error:', error);});
an error is returned with the wrong message.
actual:
'The '' property must be a/an 'object'. The type of the property is 'object''
expected:
'The '' property must be a/an 'object'. The type of the property is 'array''
The text was updated successfully, but these errors were encountered: