@wyxos/zephyr 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.mjs +1 -1
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -837,7 +837,7 @@ async function runRemoteTasks(config, options = {}) {
|
|
|
837
837
|
if (isLaravel) {
|
|
838
838
|
logProcessing('Running Laravel tests locally...')
|
|
839
839
|
try {
|
|
840
|
-
await runCommand('php', ['artisan', 'test'
|
|
840
|
+
await runCommand('php', ['artisan', 'test'], { cwd: rootDir })
|
|
841
841
|
logSuccess('Local tests passed.')
|
|
842
842
|
} catch (error) {
|
|
843
843
|
throw new Error(`Local tests failed. Fix test failures before deploying. ${error.message}`)
|