We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4842a4 commit db93d9aCopy full SHA for db93d9a
composer.json
@@ -22,7 +22,8 @@
22
"laravel/laravel": ">=5.5",
23
"fzaninotto/faker": "~1.4",
24
"intervention/image": "~2.3",
25
- "laravel/browser-kit-testing": "^6.0"
+ "laravel/browser-kit-testing": "^6.0",
26
+ "spatie/phpunit-watcher": "^1.22.0"
27
},
28
"autoload": {
29
"psr-4": {
tests/ImageUploadTest.php
@@ -133,7 +133,7 @@ public function testDeleteImages()
133
->dontSeeInDatabase('test_images', ['id' => 1]);
134
135
foreach (range(1, 6) as $index) {
136
- $this->assertFileDoesNotExist(public_path('uploads/' . $images['image' . $index]));
+ $this->assertFileDoesNotExist(public_path('uploads/'.$images['image'.$index]));
137
}
138
139
$this->visit('admin/images')
0 commit comments