test_io 0.1.0 test_io: ^0.1.0 copied to clipboard
Access to environmental variables in browsers ando other cross-platform helpers for testing.
import 'package:test/test.dart';
import 'package:test_io/test_io.dart';
void main() {
test('Example', () async {
final env = await getEnvironmentalVariables();
print(env['EXAMPLE']);
});
}