Skip to content

Commit

Permalink
docs(changelog): generate latest release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
lykmapipo committed Mar 30, 2020
1 parent e286f93 commit 26412bd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 0.5.11 (2020-03-30)

##### Chores

* **deps:** force latest version & audit fix ([e286f936](https://github.com/lykmapipo/test-helpers/commit/e286f93623a88c0706fb45c68cc1229530727ffc))

#### 0.5.10 (2020-03-06)

##### Chores
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lykmapipo/test-helpers",
"version": "0.5.10",
"version": "0.5.11",
"description": "Sensible test helpers",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('test-helpers', () => {

it('should spy', () => {
const dialer = { dial: () => {} };
const call = number => dialer.dial(number);
const call = (number) => dialer.dial(number);
const dialed = spy(dialer, 'dial');

call();
Expand Down

0 comments on commit 26412bd

Please sign in to comment.