Files
aritmija/tests/Feature/BlockComponentDebugTest.php
2026-05-13 17:11:09 +02:00

12 lines
256 B
PHP

<?php
use cPad\Plugins\Blocks\Components\Block;
it('constructs the block component with debug mode enabled', function () {
config()->set('app.debug', true);
$component = new Block('sample-block');
expect($component->debug)->toBeTrue();
});