| 1 2 3 4 5 6 7 8 9 10 | 1× 1× 1× 1× 4× 1× | const fs = require("fs");
const path = require("path");
const fixturesDir = path.join(__dirname, "fixtures");
function getFixture(fixtureName, other) {
return fs.readFileSync(path.join(fixturesDir, fixtureName), other);
}
module.exports = getFixture;
|