Fix unit test for FrontEndFileHandler after html5.js removal

This commit is contained in:
Kijin Sung 2023-08-31 01:04:16 +09:00
parent 741760642e
commit 35dec01ab0

View file

@ -256,7 +256,6 @@ class FrontEndFileHandlerTest extends \Codeception\TestCase\Test
$handler = new FrontEndFileHandler();
$handler->loadFile(array('./common/js/common.js', 'head'));
$handler->loadFile(array('./common/js/debug.js', 'head'));
$handler->loadFile(array('./common/js/html5.js', 'head'));
$handler->loadFile(array('///external.host/js/script.js'));
$handler->loadFile(array('./tests/_data/formatter/concat.source1.js', 'head', 'lt IE 8'));
$handler->loadFile(array('./tests/_data/formatter/concat.source2.js', 'head', 'gt IE 7'));