fixture-helper
v1.0.0
Published
It should be easy to use fixtures for your tests.
Downloads
2
Readme
Fixture Helper
It should be easy to use fixtures for your tests.
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 read
ing files.
import { setBaseDir, read } from 'fixture-helper'
setBaseDir('foo')
read('bar.txt') // foo/bar.txt
Dev
yarn test
yarn lint
yarn build