Skip to content

Commit

Permalink
Merge pull request #18 from CodeWithDennis/pest-arch-test
Browse files Browse the repository at this point in the history
Add `dd` `dump` `ray` arch test
  • Loading branch information
CodeWithDennis authored Sep 9, 2024
2 parents 620269a + aab2241 commit 669237f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Kickstart your project and save time with Larament! This time-saving starter kit
- A custom profile page utilizes the password generation feature for streamlined user management.
- A ready-to-use custom theme includes a sidebar separator for better UI organization.
- All component labels are automatically translatable, so there’s no need to add `->translateLabel()` to individual components.
- Archtest is included for architectural testing.

## [Helpers](https://laravel-news.com/creating-helpers)
I've set up a Helper file for you to use in your Laravel app. You can find it at `app\Helpers.php`. This file is ready for you to add your custom helper functions, which Composer will automatically include in your project.
Expand Down
5 changes: 5 additions & 0 deletions tests/Feature/ArchTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

test('Not debugging statements are left in our code.')
->expect(['dd', 'dump', 'ray'])
->not->toBeUsed();

0 comments on commit 669237f

Please sign in to comment.