Skip to content

Commit e02a357

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 5040fb1 commit e02a357

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/vue-starter-kit.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ jobs:
4646
run: npx playwright install --with-deps
4747

4848
- 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
5052

5153
- 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

tests/Unit/ExampleTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

33
test('that true is true', function () {
4-
expect(isset($_SERVER['APP_BASE_PATH']))->toBeTrue();
5-
expect(isset($_ENV['APP_BASE_PATH']))->toBeTrue();
64
expect(true)->toBeTrue();
75
});

0 commit comments

Comments
 (0)