File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 46
46
run : npx playwright install --with-deps
47
47
48
48
- name : Build vue-starter-kit
49
- run : APP_BASE_PATH=${{ github.workspace }}/vendor/laravel/vue-starter-kit composer run vue:build
49
+ run : composer run vue:build
50
+ env :
51
+ APP_BASE_PATH : ${{ github.workspace }}/vendor/laravel/vue-starter-kit
50
52
51
53
- name : Execute tests
52
- run : APP_BASE_PATH=${{ github.workspace }}/vendor/laravel/vue-starter-kit php vendor/bin/pest
54
+ run : php vendor/bin/pest
55
+ env :
56
+ APP_BASE_PATH : ${{ github.workspace }}/vendor/laravel/vue-starter-kit
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
test ('that true is true ' , function () {
4
- expect (isset ($ _SERVER ['APP_BASE_PATH ' ]))->toBeTrue ();
5
- expect (isset ($ _ENV ['APP_BASE_PATH ' ]))->toBeTrue ();
6
4
expect (true )->toBeTrue ();
7
5
});
You can’t perform that action at this time.
0 commit comments