test-helpers

Node.js path and fs helpers for things like reading fixtures and writing results while running tests.


Keywords
helper, helpers, test, tests, mocha, should, chai, unit, fixtures, fixture, actual, utils, util, utility, utilities
License
MIT
Install
npm install test-helpers@0.1.4

Documentation

test-helpers NPM version

Node.js path and fs helpers for things like reading fixtures and writing results while running tests.

Install

Install with npm:

npm i test-helpers --save-dev

Usage

var helpers = require('test-helpers')([options]);

Options

  • dir: the base directory for tests. default is test
  • fixtures: the base directory for test fixtures. default is test/fixtures
  • actual: the base directory for test results. default is test/actual

Options can be defined on the helpers() function, or with helpers.option().

Examples:

Change the default directories to use for tests:

var helpers = require('test-helpers')({
  dir: 'test',
  fixtures: 'test/fixtures',
  dir: 'test/actual'
});

Or use the .option() method:

helpers.option('dir', 'test');
helpers.option('fixtures', 'test/fixtures');
helpers.option('actual', 'test/actual');

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on August 11, 2014.