mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
scaffold test & tailwindcss
This commit is contained in:
parent
0ff8b68fbe
commit
f25bfbc8ef
1
public/css/tailwindcss@1.4.6.css
vendored
Normal file
1
public/css/tailwindcss@1.4.6.css
vendored
Normal file
File diff suppressed because one or more lines are too long
31
tests/Feature/PdfMaker/PdfMakerDesignsTest.php
Normal file
31
tests/Feature/PdfMaker/PdfMakerDesignsTest.php
Normal file
@ -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'],
|
||||
];
|
||||
}
|
||||
}
|
1
tests/Feature/PdfMaker/designs/business.html
Normal file
1
tests/Feature/PdfMaker/designs/business.html
Normal file
@ -0,0 +1 @@
|
||||
php a
|
Loading…
x
Reference in New Issue
Block a user