UNPKG

sharec-core

Version:

[![.github/workflows/main.yml](https://github.com/lamartire/sharec/workflows/.github/workflows/main.yml/badge.svg)](https://github.com/lamartire/sharec/actions) [![npm](https://img.shields.io/npm/v/sharec)](https://npmjs.com/sharec) ![MIT License](https:/

21 lines (16 loc) 549 B
const { fixtures } = require('testUtils') const { pipe } = require('../pipe') describe('strategies > pipes > prettier > pipe', () => { describe('JSON', () => { const perttierFxt = fixtures('prettier/json/00-base') it('should merge configs', () => { expect(pipe('.prettierrc')(perttierFxt)).toMatchSnapshot() }) }) describe('YAML', () => { const perttierFxt = fixtures('prettier/yaml/00-base') it('should merge configs', () => { expect(pipe('.prettierrc.yaml')(perttierFxt)).toMatchSnapshot() }) }) })