Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Rappasoft\LaravelLivewireTables\Tests\Unit\Traits\Configuration;

use Rappasoft\LaravelLivewireTables\Tests\TestCase;

final class ConfigurableAreaConfigurationTest extends TestCase
{
public function test_can_set_configurable_area(): void
{
$this->assertNull($this->basicTable->getConfigurableAreaFor('before-tools'));

$this->basicTable->setConfigurableArea('before-tools', 'path.to.my.view');

$this->assertSame('path.to.my.view', $this->basicTable->getConfigurableAreaFor('before-tools'));
}
}
Loading