diff --git a/package.json b/package.json index f910307..3736117 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mask-hooks", - "version": "3.1.1", + "version": "3.2.0", "description": "Lightweight package with functions and hooks for masking data inputs and outputs for Node.JS projects", "main": "dist/common/index.js", "module": "dist/module/index.js", diff --git a/tests/presets.spec.ts b/tests/presets.spec.ts index 6d5949a..07649ff 100644 --- a/tests/presets.spec.ts +++ b/tests/presets.spec.ts @@ -137,7 +137,7 @@ describe('Presets test all', () => { expect(mask('guilherme neves')).toBe('Guilherme Neves'); expect(mask('ça áo ést')).toBe('Ça Áo Ést'); - expect(mask('mask hooks')).toBe('Mask Hooks'); + expect(mask('MASK HOOKS')).toBe('Mask Hooks'); });