Skip to content

Commit 53e86ea

Browse files
committed
Fix failing ServerTest
1 parent b6f1ea6 commit 53e86ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/ServerTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ class ServerTest extends \PHPUnit_Framework_TestCase
2323
{
2424
public function testCheckedCachedCompile()
2525
{
26+
if (! file_exists(__DIR__ . '/inputs/scss_cache')) {
27+
mkdir(__DIR__ . '/inputs/scss_cache', 0755);
28+
}
29+
2630
$server = new Server(__DIR__ . '/inputs/');
2731
$css = $server->checkedCachedCompile(__DIR__ . '/inputs/import.scss', '/tmp/scss.css');
2832

0 commit comments

Comments
 (0)