Skip to content

Commit

Permalink
update to use dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrayson committed Jan 17, 2025
1 parent 42d1691 commit 96028ba
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.eslintrc.js
node_modules
.idea
.DS_Store
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
}
}
2 changes: 1 addition & 1 deletion test/form-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 96028ba

Please sign in to comment.