Skip to content

Commit

Permalink
chore(test): register artisan and view provider
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Apr 12, 2024
1 parent c68ded0 commit 13415c5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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": "@athenna/core",
"version": "4.35.0",
"version": "4.36.0",
"description": "One foundation for multiple applications.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down
6 changes: 6 additions & 0 deletions src/testing/BaseConsoleTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ export class BaseConsoleTest {
Path.toHref(Path.bootstrap(`test.${Path.ext()}`)),
this.getIgniteOptions()
)

const { ViewProvider } = await import('@athenna/view')
const { ArtisanProvider } = await import('@athenna/artisan')

new ViewProvider().register()
new ArtisanProvider().register()
}

@AfterAll()
Expand Down

0 comments on commit 13415c5

Please sign in to comment.