Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperTey committed Nov 23, 2024
1 parent 00f9eeb commit 033c2bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Generator/ControllerMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
}

expect(file_exists($expectedPath))->toBeFalse();
expect(file_exists(app_path('Http/Controllers/Controller.php')))->toBeTrue();

Artisan::call("ddd:controller {$domainName}:{$controllerName}");

Expand All @@ -37,6 +36,7 @@
);

expect(file_exists($expectedPath))->toBeTrue();
expect(file_exists(app_path('Http/Controllers/Controller.php')))->toBeTrue();

$contents = file_get_contents($expectedPath);

Expand Down

0 comments on commit 033c2bc

Please sign in to comment.