Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
pad-upe
Commits
9ddd48ad
Commit
9ddd48ad
authored
Jan 17, 2022
by
alissonalbuquerque
Browse files
inital commit
parents
Changes
84
Hide whitespace changes
Inline
Side-by-side
tests/Feature/ExampleTest.php
0 → 100644
View file @
9ddd48ad
<?php
namespace
Tests\Feature
;
use
Illuminate\Foundation\Testing\RefreshDatabase
;
use
Tests\TestCase
;
class
ExampleTest
extends
TestCase
{
/**
* A basic test example.
*
* @return void
*/
public
function
test_example
()
{
$response
=
$this
->
get
(
'/'
);
$response
->
assertStatus
(
200
);
}
}
tests/TestCase.php
0 → 100644
View file @
9ddd48ad
<?php
namespace
Tests
;
use
Illuminate\Foundation\Testing\TestCase
as
BaseTestCase
;
abstract
class
TestCase
extends
BaseTestCase
{
use
CreatesApplication
;
}
tests/Unit/ExampleTest.php
0 → 100644
View file @
9ddd48ad
<?php
namespace
Tests\Unit
;
use
PHPUnit\Framework\TestCase
;
class
ExampleTest
extends
TestCase
{
/**
* A basic test example.
*
* @return void
*/
public
function
test_example
()
{
$this
->
assertTrue
(
true
);
}
}
webpack.mix.js
0 → 100644
View file @
9ddd48ad
const
mix
=
require
(
'
laravel-mix
'
);
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
mix
.
js
(
'
resources/js/app.js
'
,
'
public/js
'
)
.
postCss
(
'
resources/css/app.css
'
,
'
public/css
'
,
[
//
]);
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment