UNPKG

codetrix

Version:

A lightweight lodash-style utility library

7 lines (6 loc) 184 B
import { reverseString } from "../../string"; describe('reverseString', () => { it('reverses the string', () => { expect(reverseString('hello')).toBe('olleh'); }); });