Skip to content

Commit

Permalink
- Fixed missing dir in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Machy8 committed Oct 12, 2017
1 parent bcd3a92 commit e8f9b1c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/AbstractTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ abstract class AbstractTestCase extends TestCase
private $webloader;


public function __construct()
{
if ( ! is_dir(self::ACTUAL_DIR)) {
mkdir(self::ACTUAL_DIR);
}
}


public function createCssCollection(string $name): FilesCollection
{
return $this->getWebLoader()
Expand Down

0 comments on commit e8f9b1c

Please sign in to comment.