scaffold test & tailwindcss
This commit is contained in:
parent
0ff8b68fbe
commit
f25bfbc8ef
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature\PdfMaker;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||||
|
use Illuminate\Foundation\Testing\WithFaker;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
class PdfMakerDesignsTest extends TestCase
|
||||||
|
{
|
||||||
|
public $state = [];
|
||||||
|
|
||||||
|
public function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->state = [
|
||||||
|
'variables' => [
|
||||||
|
'$css' => asset('css/tailwindcss@1.4.6.css'),
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testBusiness()
|
||||||
|
{
|
||||||
|
$state = [
|
||||||
|
'template' => [],
|
||||||
|
'variables' => $this->state['variables'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
php a
|
||||||
Loading…
Reference in New Issue