tabsFor() sorts by contribution priority when no user order is set. Test expectations updated for sidebar defaultSize 400 and decision ID D-1 (no zero-padding). PTY tests tagged forkpty and run via dart test (forkpty output unreliable inside flutter test runner). CI script adds --no-fatal-infos and --exclude-tags. Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
554 B
Bash
Executable File
19 lines
554 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Fast test layer — analyze + format + unit + widget + golden.
|
|
# Runs in <60s on a warm cache. Called from `make test` and the
|
|
# pre-push hook.
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> flutter analyze"
|
|
flutter analyze --no-fatal-infos
|
|
|
|
echo "==> dart format (whole tree)"
|
|
dart format --set-exit-if-changed .
|
|
|
|
echo "==> dart test (forkpty — incompatible with flutter test runner)"
|
|
dart test --tags forkpty test/pty/session_test.dart
|
|
|
|
echo "==> flutter test (unit + widget + golden)"
|
|
flutter test --exclude-tags forkpty
|