focus-flow/packages/scheduler_integration_tests/test/scheduler_flow_test.dart

13 lines
482 B
Dart

// SPDX-FileCopyrightText: 2026 FocusFlow contributors
// SPDX-License-Identifier: AGPL-3.0-only
/// Tests Scheduler Flow behavior for the Scheduler Integration Tests package.
library;
import '../integration/scheduler_flow_test.dart' as scheduler_flow_test;
/// Entry point for this executable Dart file.
/// It wires the local command, test, or application behavior needed by this repository without exposing additional public API.
void main() {
scheduler_flow_test.main();
}