test-helpers

0.1.4 • Public • Published

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.

Package Sidebar

Install

npm i test-helpers

Weekly Downloads

13

Version

0.1.4

License

none

Last publish

Collaborators

  • jonschlinkert