fix(config): untrack phpunit.xml + add Vite watch exclusion for Blade cache
parent
7595d28613
commit
4e428cc58e
|
|
@ -25,3 +25,4 @@ _ide_helper.php
|
||||||
Homestead.json
|
Homestead.json
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
phpunit.xml
|
||||||
|
|
|
||||||
32
phpunit.xml
32
phpunit.xml
|
|
@ -1,32 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
||||||
bootstrap="vendor/autoload.php"
|
|
||||||
colors="true">
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="Unit">
|
|
||||||
<directory>tests/Unit</directory>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="Feature">
|
|
||||||
<directory>tests/Feature</directory>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
<source>
|
|
||||||
<include>
|
|
||||||
<directory>app</directory>
|
|
||||||
</include>
|
|
||||||
</source>
|
|
||||||
<php>
|
|
||||||
<env name="APP_ENV" value="testing"/>
|
|
||||||
<env name="APP_DEBUG" value="true"/>
|
|
||||||
<env name="DB_CONNECTION" value="mysql"/>
|
|
||||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
||||||
<env name="CACHE_STORE" value="array"/>
|
|
||||||
<env name="SESSION_DRIVER" value="array"/>
|
|
||||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
||||||
<env name="MAIL_MAILER" value="array"/>
|
|
||||||
<env name="SESSION_SECURE_COOKIE" value="false"/>
|
|
||||||
<env name="SESSION_DOMAIN" value="null"/>
|
|
||||||
<env name="ALLOW_QUICK_LOGIN" value="true"/>
|
|
||||||
</php>
|
|
||||||
</phpunit>
|
|
||||||
|
|
@ -35,6 +35,9 @@ export default defineConfig({
|
||||||
server: {
|
server: {
|
||||||
host: '0.0.0.0',
|
host: '0.0.0.0',
|
||||||
port: 5173,
|
port: 5173,
|
||||||
|
watch: {
|
||||||
|
ignored: ['**/storage/framework/views/**'],
|
||||||
|
},
|
||||||
hmr: {
|
hmr: {
|
||||||
host: 'app.dev.lernschiff.com',
|
host: 'app.dev.lernschiff.com',
|
||||||
protocol: 'wss',
|
protocol: 'wss',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue