updated test files

This commit is contained in:
Mike Kell 2025-07-27 09:34:13 -04:00
parent c26c2bb7e5
commit 70a67186a1
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import 'package:dart_jsonwebtoken/dart_jsonwebtoken.dart';
/// Base URL for the API the tests will hit. /// Base URL for the API the tests will hit.
/// Override at runtime with: /// Override at runtime with:
/// flutter test --dart-define=API_BASE_URL=http://192.168.1.50:8000 /// flutter test --dart-define=API_BASE_URL=http://192.168.1.50:8000
const String _apiBaseUrl = const String.fromEnvironment( const String _apiBaseUrl = String.fromEnvironment(
'API_BASE_URL', 'API_BASE_URL',
defaultValue: 'http://localhost:8000', defaultValue: 'http://localhost:8000',
); );