applyYamlTestBootstrap function
Applies YAML test environment and storage bootstrap data to config.
Implementation
void applyYamlTestBootstrap(EnsembleConfig config, EnsembleTestSetup setup) {
if (setup.envOverrides != null && setup.envOverrides!.isNotEmpty) {
config.updateEnvOverrides(setup.envOverrides!);
}
setup.initialPublicStorage?.forEach((key, value) {
StorageManager().write(key, value);
});
}