generated from AthennaIO/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from AthennaIO/develop
Improve artisan child processes
- Loading branch information
Showing
75 changed files
with
2,086 additions
and
1,583 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
/** | ||
* @athenna/common | ||
* @athenna/artisan | ||
* | ||
* (c) João Lenon <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
import { Config } from '@athenna/config' | ||
import { command } from '#src/testing/plugins/index' | ||
import { Runner, assert, specReporter } from '@athenna/test' | ||
|
||
Config.set('meta', import.meta.url) | ||
|
||
await Runner.setTsEnv() | ||
.addPlugin(assert()) | ||
.addPlugin(command()) | ||
|
Oops, something went wrong.