* Bumped lodash version * Fixed typo * Fixed typos * Revert "Fixed typo" This reverts commit 06cfe9d4edba0b99257cbffc6dc08ae2f3460d78. * Revert "Fixed typos" This reverts commit ec3975c7392df9a0a42682ee4f32eadd2615c69c. * Fixed json typos
@babel/helper-fixtures
NOTE: This is an internal Babel module and may not work outside. Use at your own risk.
Usage
import getFixtures from "@babel/helper-fixtures";
type TestFile = {
loc: string;
code: string;
filename: string;
};
type Test = {
title: string;
disabled: boolean;
options: Object;
exec: TestFile;
actual: TestFile;
expected: TestFile;
};
type Suite = {
options: Object;
tests: Array<Test>;
title: string;
filename: string;
};
let fixtures: Array<Suite> = getFixtures("/User/sebmck/Projects/babel-something/test/fixtures");