Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 284B

123456789101112
  1. var assert = require('assert')
  2. var minors = require('..')
  3. describe('title-case-minors', function () {
  4. it('should be an array of strings', function () {
  5. assert(minors instanceof Array)
  6. minors.forEach(function (minor) {
  7. assert(typeof minor == 'string')
  8. })
  9. })
  10. })