├── .flowconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── fixtures ├── __fixtures__ │ └── foo │ │ └── file.txt └── nested │ └── __fixtures__ │ └── bar │ ├── file.txt │ ├── nested │ └── nested-file.txt │ └── symlink-to-file ├── flow-typed └── npm │ └── jest_v20.x.x.js ├── index.js ├── package.json ├── test.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/__fixtures__/foo/file.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /fixtures/nested/__fixtures__/bar/file.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /fixtures/nested/__fixtures__/bar/nested/nested-file.txt: -------------------------------------------------------------------------------- 1 | bar/nested 2 | -------------------------------------------------------------------------------- /fixtures/nested/__fixtures__/bar/symlink-to-file: -------------------------------------------------------------------------------- 1 | file.txt -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/flow-typed/npm/jest_v20.x.x.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thinkmill/jest-fixtures/HEAD/yarn.lock --------------------------------------------------------------------------------