36 lines
1,007 B
JavaScript
36 lines
1,007 B
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
import { ErrorWithStack } from 'jest-util';
|
|
|
|
const fixturesBasePath = path.join(process.cwd(), 'spec', 'javascripts', 'fixtures');
|
|
|
|
export function getFixture(relativePath) {
|
|
const absolutePath = path.join(fixturesBasePath, relativePath);
|
|
if (!fs.existsSync(absolutePath)) {
|
|
throw new ErrorWithStack(
|
|
`Fixture file ${relativePath} does not exist.
|
|
|
|
Did you run bin/rake karma:fixtures?`,
|
|
getFixture,
|
|
);
|
|
}
|
|
|
|
return fs.readFileSync(absolutePath, 'utf8');
|
|
}
|
|
|
|
export const getJSONFixture = relativePath => JSON.parse(getFixture(relativePath));
|
|
|
|
export const resetHTMLFixture = () => {
|
|
document.body.textContent = '';
|
|
};
|
|
|
|
export const setHTMLFixture = (htmlContent, resetHook = afterEach) => {
|
|
document.body.outerHTML = htmlContent;
|
|
resetHook(resetHTMLFixture);
|
|
};
|
|
|
|
export const loadHTMLFixture = (relativePath, resetHook = afterEach) => {
|
|
const fileContent = getFixture(relativePath);
|
|
setHTMLFixture(fileContent, resetHook);
|
|
};
|