async-validate
Version:
Asynchronous validation for node and the browser
34 lines (29 loc) • 952 B
JavaScript
var expect = require('chai').expect
, Schema = require('../../index')
, descriptor = require('../fixtures/schema/null');
describe("async-validate:", function() {
it("should error on non-null value", function(done) {
var schema = new Schema(descriptor);
schema.validate({value: true}, function(err, res) {
expect(res.errors.length).to.eql(1);
expect(res.errors[0].message).to.eql('value is not null');
done();
});
});
it("should validate on type null", function(done) {
var schema = new Schema(descriptor);
schema.validate({value: null}, function(err, res) {
expect(err).to.eql(null);
expect(res).to.eql(null);
done();
});
});
it("should validate on type null with no value", function(done) {
var schema = new Schema(descriptor);
schema.validate({}, function(err, res) {
expect(err).to.eql(null);
expect(res).to.eql(null);
done();
});
});
});