This commit is contained in:
2026-05-13 17:11:09 +02:00
commit ea63897455
2785 changed files with 359868 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?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();
});