mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-18 09:04:54 +00:00
Fix backend-tests find path for plugin test discovery (#7397)
plugins i --path installs to src/plugin_packages/, not node_modules/. Update the find command to look in the correct location so backend tests are actually discovered and run. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
892c52ba26
commit
45fe8a310e
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
name: Run the backend tests
|
||||
working-directory: ./etherpad-lite
|
||||
run: |
|
||||
res=$(find .. -path "./node_modules/ep_*/static/tests/backend/specs/**" | wc -l)
|
||||
res=$(find . -path "./src/plugin_packages/ep_*/static/tests/backend/specs/**" | wc -l)
|
||||
if [ $res -eq 0 ]; then
|
||||
echo "No backend tests found"
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue