12 lines
256 B
PHP
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();
|
|
});
|