Skip to content

Commit

Permalink
chore(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Jan 9, 2024
1 parent 363798a commit 07a7839
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/ioc",
"version": "4.12.0",
"version": "4.13.0",
"description": "Global Ioc helper for Athenna ecosystem. Built on top of awilix.",
"license": "MIT",
"author": "João Lenon <lenon@athenna.io>",
Expand Down Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@athenna/common": "^4.26.0",
"@athenna/test": "^4.17.0",
"@athenna/test": "^4.18.0",
"@athenna/tsconfig": "^4.12.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/facades/FacadeTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default class FacadeTest extends BaseTest {
public async shouldBeAbleToCreateStubsForFacadeMethods({ assert }: Context) {
const Sum = Facade.createFor<SumService>('SumService')

const stub = Sum.when('get').return(100)
const stub = Sum.when('get').return(100).get()

assert.deepEqual(Sum.get(), 100)
assert.called(stub)
Expand Down

0 comments on commit 07a7839

Please sign in to comment.