Skip to content

Commit

Permalink
Merge pull request #781 from dynamoosejs/projectUpdates
Browse files Browse the repository at this point in the history
Project updates
  • Loading branch information
fishcharlie committed Apr 6, 2020
2 parents 32131d9 + 0b2c361 commit eaae2c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
- run: npm install
Expand All @@ -16,7 +16,7 @@ jobs:
matrix:
node-version: [8.x, 10.x, 12.x, 13.x]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/empty_function.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/* istanbul ignore file */
module.exports = ()=>{};
module.exports = () => {};
2 changes: 1 addition & 1 deletion test/utils/empty_function.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ describe("utils.empty_function", () => {
});

it("Should equal an empty function", () => {
expect(utils.empty_function.toString()).to.eql("()=>{}");
expect(utils.empty_function.toString().replace(/\s/gu, "")).to.eql("()=>{}");
});
});

0 comments on commit eaae2c9

Please sign in to comment.