test_io 0.1.2 test_io: ^0.1.2 copied to clipboard
Access to environmental variables and local files in tests in all platforms, including browsers.
import 'package:test/test.dart';
import 'package:test_io/test_io.dart';
void main() {
test('Example', () async {
final env = await getEnvironmentalVariables();
print(env['EXAMPLE']);
});
}