after_test.js 456 B

1234567891011121314151617181920
  1. 'use strict';
  2. var should = require('./chai').should();
  3. exports.error = function (res) {
  4. console.log('ajv options:', res.validator._opts);
  5. };
  6. exports.each = function (res) {
  7. // console.log(res.errors);
  8. res.valid .should.be.a('boolean');
  9. if (res.valid === true ) {
  10. should.equal(res.errors, null);
  11. } else {
  12. res.errors .should.be.an('array');
  13. for (var i=0; i<res.errors.length; i++)
  14. res.errors[i] .should.be.an('object');
  15. }
  16. };