1.0.0 • Published 6 years ago

fixture-helper v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Fixture Helper

It should be easy to use fixtures for your tests.

Build Status

API

read(filePath)

filePath string

Returns contents of filePath as string.

import { read } from 'fixture-helper'
read('foo/bar.txt')

setBaseDir(dirPath)

dirPath string

Sets the base directory to use when reading files.

import { setBaseDir, read } from 'fixture-helper'
setBaseDir('foo')
read('bar.txt')  // foo/bar.txt

Dev

yarn test
yarn lint
yarn build