Skip to content

Commit de4734c

Browse files
committed
debug: build directory not exists
1 parent 1cb56d7 commit de4734c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/TestCase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ protected function setUp(): void
1919
{
2020
parent::setUp();
2121

22-
if (!is_dir(dirname(__DIR__) . '/build')) {
22+
var_dump(dirname(__DIR__) . '/build', is_dir(dirname(__DIR__) . '/build'));
23+
24+
if (!is_dir(dirname(__DIR__) . '/build/views')) {
2325
mkdir(dirname(__DIR__) . '/build/views', 0775, true);
2426
}
2527

0 commit comments

Comments
 (0)