diff --git a/tests/HiddenFilesTest.php b/tests/HiddenFilesTest.php index fc2bdd5..2e687dc 100644 --- a/tests/HiddenFilesTest.php +++ b/tests/HiddenFilesTest.php @@ -50,11 +50,14 @@ class HiddenFilesTest extends TestCase [], $this->filePath('.hidden'), false, ['alpha', 'bravo'], ], 'App files' => [ - [], 'NOT_A_REAL_FILE', true, ['app', 'index.php', '.hidden'], + [], 'NOT_A_REAL_FILE', true, [ + 'app', 'index.php', '.hidden', '.env', '.env.example', + ], ], 'All' => [ ['foo', 'alpha'], $this->filePath('.hidden'), true, [ - 'foo', 'alpha', 'bravo', 'app', 'index.php', '.hidden', + 'foo', 'alpha', 'bravo', 'app', 'index.php', '.hidden', '.env', + '.env.example', ], ], ];