Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 24 days ago
JSON representation

jest properties loader for `.properties` file

Awesome Lists containing this project

README

        

# Jest Properties File Loader

[![NPM](https://img.shields.io/npm/v/jest-properties-loader.svg)](https://www.npmjs.com/package/jest-properties-loader)
[![Github Workflow Status](https://github.com/aquariuslt/jest-properties-loader/workflows/ci/badge.svg)](https://github.com/aquariuslt/jest-properties-loader)
[![Codecov](https://codecov.io/gh/aquariuslt/jest-properties-loader/branch/master/graph/badge.svg)](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"
}
```