mirror of
https://github.com/brufdev/many-notes.git
synced 2026-05-14 22:28:26 -05:00
8 lines
143 B
PHP
8 lines
143 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('runs all upgrade commands', function (): void {
|
|
$this->artisan('upgrade:run')->assertExitCode(0);
|
|
});
|