From cf9b46a50c241edd7a5266de7063bac808ead9ec Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Wed, 12 Jul 2023 20:42:22 -0400 Subject: [PATCH] Debug paths --- tests/GenerateTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/GenerateTest.php b/tests/GenerateTest.php index 2572485..b83f2ce 100644 --- a/tests/GenerateTest.php +++ b/tests/GenerateTest.php @@ -68,6 +68,7 @@ private function generate() $this->assertTrue($this->files->exists($this->destination)); return collect($this->files->allFiles($this->destination)) + ->each(fn ($file) => var_dump($file->getPathname())) ->mapWithKeys(fn ($file) => [$this->relativePath($file->getPathname()) => $file->getContents()]) ->all(); }