https://github.com/aquariuslt/jest-properties-loader
jest properties loader for `.properties` file
https://github.com/aquariuslt/jest-properties-loader
jest jest-plugin
Last synced: 3 months ago
JSON representation
jest properties loader for `.properties` file
- Host: GitHub
- URL: https://github.com/aquariuslt/jest-properties-loader
- Owner: aquariuslt
- License: mit
- Created: 2019-07-06T10:48:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-12T09:59:59.000Z (9 months ago)
- Last Synced: 2024-10-15T18:47:29.607Z (9 months ago)
- Topics: jest, jest-plugin
- Language: TypeScript
- Size: 1.65 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Jest Properties File Loader
[](https://www.npmjs.com/package/jest-properties-loader)
[](https://github.com/aquariuslt/jest-properties-loader)
[](https://codecov.io/gh/aquariuslt/jest-properties-loader)> Provide a transform solution to load `.properties` file as json in jest test
## Usage
### Installation
```bash
yarn add -D jest-properties-loader
```### Setup
add to you jest configuration `transform` field
```
"transform": {
"^.+\\.properties?$": "jest-properties-loader"
}
```