Description
Seems there's a few issues with Laravel 5.5, namely default config issues:
In Inline.php line 600:
Malformed inline YAML string: {{ config('app.name') }} at line 2 (near "dashboard: {{ config('app.name') }}").
which is easily resolved by wrapping that string in double quotes within the YML config.
As well as errors associated with the watcher:
Config loaded from /Users/dkenney/Documents/Personal/NukeYa/config
Loading testers...
No testers found.
Loading projects and suites...
No projects found.
Loading tests...
FATAL ERROR: directory not found: /Users/dkenney/code/pragmarx/tddd/tests/Feature.
[1] 24730 done php artisan tddd:watch
I am new to Laravel and will try to figure these issues out on my own - documentation isn't really clear regarding how the configuration for tests work and what directory to point to. I'm not sure why pragmarx/tddd
is chosen or why it's assuming it should point to my home directory as well?
From the config I can see that it's configured this way but wouldn't a better way to do this be to default to the root of the Laravel application and not assume the location of the code base?
Any help here would be greatly appreciated - I can try to make a PR for fixing this - I was looking forward to having a nice way to manage my tests and code coverage while I learn and build with Laravel.
System info:
OSX High Sierra
PHP 7.1.3
If you need anymore let me know.