mirror of
https://github.com/unraid/api.git
synced 2025-12-30 21:19:49 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Standalone web bundle with auto-mount utilities and a self-contained test page. * New responsive modal components for consistent mobile/desktop dialogs. * Header actions to copy OS/API versions. * **Improvements** * Refreshed UI styles (muted borders), accessibility and animation refinements. * Theming updates and Tailwind v4–aligned, component-scoped styles. * Runtime GraphQL endpoint override and CSRF header support. * **Bug Fixes** * Safer network fetching and improved manifest/asset loading with duplicate protection. * **Tests/Chores** * Parallel plugin tests, new extractor test suite, and updated build/test scripts. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
16 lines
391 B
Bash
Executable File
16 lines
391 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# WebComponentsExtractor Integration Test
|
|
#
|
|
# This script runs the PHP test suite for WebComponentsExtractor
|
|
# Exit codes:
|
|
# 0 - All tests passed
|
|
# 1 - One or more tests failed
|
|
|
|
set -e # Exit on error
|
|
|
|
# Get the directory of this script
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Run the PHP test suite
|
|
exec php "$SCRIPT_DIR/test-extractor.php" "$@" |