UNPKG

barrelsby

Version:

Automatic TypeScript barrels for your entire code base

13 lines (11 loc) 412 B
import { getQuoteCharacter } from './quoteCharacter'; describe('options/quoteCharacter module has a', () => { describe('getQuoteCharacter function that', () => { it('should correctly return the singlequote', () => { expect(getQuoteCharacter(true)).toEqual("'"); }); it('should correctly return the doublequote', () => { expect(getQuoteCharacter(false)).toEqual('"'); }); }); });