6.22.0 • Published 2 years ago

@nkduy/babel-helper-fixtures v6.22.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@nkduy/babel-helper-fixtures

NOTE: This is an internal Babel module and may not work outside. Use at your own risk.

Usage

import getFixtures from "@nkduy/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/nkduy/Projects/babel-something/test/fixtures");