From 3da8a0ba2f72ed35a49e25ff82a5225ab629592b Mon Sep 17 00:00:00 2001 From: Luke Davies Date: Wed, 19 Sep 2018 00:29:18 +0100 Subject: [PATCH] Fixed test describe name --- test/index.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.spec.ts b/test/index.spec.ts index a078cd7..4bcbda3 100644 --- a/test/index.spec.ts +++ b/test/index.spec.ts @@ -2,7 +2,7 @@ import { expect } from 'chai'; import 'mocha'; import mappedReplace from '../src'; -describe('mappedRepace', function() { +describe('mappedReplace', function() { it('should leave the string untouched when given an empty object', function() { expect(mappedReplace('test string', {})).to.be.equal('test string'); expect(mappedReplace('another', {})).to.be.equal('another');