inline-fixtures
v1.1.0
Published
[![CircleCI](https://circleci.com/gh/ofrobots/inline-fixtures.svg?style=svg)](https://circleci.com/gh/ofrobots/inline-fixtures)
Downloads
1,509
Readme
inline-fixtures
Sometimes tests need fixture directories. Observe:
const a = require(path.join('module-require', 'relative', 'dot.js'));
const b = require(path.join('module-require', 'relative', 'dot-slash.js'));
//...
At this point it is not clear what the fixture files themselves actually do, or how the rest of the test file relates to them. One must have both the fixtures and the test open together to actually understand the test.
It would be nice if the fixtures were inline, next to the test source code.
inline-fixtures
dynamically creates a temporary directory and populates it with the fixture
layout you provide, and then calls the passed in function. This has the
additional benefit that fixture mutation cannot leak from one test to
another.
Example:
import {withFixtures} from 'inline-fixtures';
describe('tests for fs.readFileSync', () => {
it('should have a test cases', async () => {
const FIXTURES = {
'README.md': 'Hello Mars.',
anotherDir: {
'index.js': '42;',
},
};
await withFixtures(FIXTURES, async (fixturesDir) => {
// A temporary `fixturesDir` exists at this point with `README.md`
// and `anotherDir`. The latter contains `index.js`.
const readmePath = path.join(fixturesDir, 'README.md');
const contents = fs.readFileSync(readmePath, 'utf8');
assert.strictEqual(contents, FIXTURES['README.md']);
});
});
});