Skip to content
Snippets Groups Projects
Commit 5182a93e authored by Oleksandr Karpenko's avatar Oleksandr Karpenko
Browse files

MAGETWO-42835: Bundled js files are not loaded if minified

parent e03ebf7b
Branches
No related merge requests found
...@@ -124,7 +124,7 @@ class ManagerTest extends \PHPUnit_Framework_TestCase ...@@ -124,7 +124,7 @@ class ManagerTest extends \PHPUnit_Framework_TestCase
->willReturn($configView); ->willReturn($configView);
$configView->expects($this->once()) $configView->expects($this->once())
->method('getExcludedFiles') ->method('getExcludedFiles')
->willReturn(['Lib::source/file.min.js']); ->willReturn(['Lib:' . ':source/file.min.js']);
$this->assertFalse($this->manager->addAsset($this->asset)); $this->assertFalse($this->manager->addAsset($this->asset));
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment