diff --git a/.gitignore b/.gitignore index c727bb7..a820f5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.eslintrc.js node_modules .idea .DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md index bc61fa4..6effeb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org) +## [1.0.6] - 2025-01-17 +### Fixed +- replace duplicated tests copied from custom module with wrapper-specific tests +- update dependencies ([sc-84853](https://app.shortcut.com/active-prospect/story/84853/fix-broken-tests-in-dependencies)) + ## [1.0.5] - 2021-02-25 ### Fixed - fix npm vulnerabilities diff --git a/package.json b/package.json index eeafe6d..e370153 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,9 @@ "description": "LeadConduit form POST integration", "main": "index.js", "scripts": { - "test": "mocha" + "test": "mocha", + "fixlint": "eslint . --fix", + "lint": "eslint ." }, "repository": { "type": "git", @@ -19,7 +21,6 @@ "leadconduit-custom": "^2.16.0" }, "devDependencies": { - "chai": "^4.1.2", - "mocha": "^8.3.0" + "@activeprospect/integration-dev-dependencies": "^2.0.1" } } diff --git a/test/form-spec.js b/test/form-spec.js index 6d59e36..3e8db75 100644 --- a/test/form-spec.js +++ b/test/form-spec.js @@ -15,7 +15,7 @@ describe('Wrap of custom integration', function() { it('wraps validate', () => { assert.isFunction(integration.validate); - assert.isNotEmpty(integration.validate({})) + assert.isNotEmpty(integration.validate({})); }); it('wraps response', () => {