2020-12-15 15:34:54 +00:00
|
|
|
export default function(scenario, create, win = window, doc = document) {
|
2019-02-21 13:05:05 +00:00
|
|
|
scenario
|
|
|
|
.given(['an external edit results in $number $model model[s]?'], function(number, model) {
|
|
|
|
return create(number, model);
|
|
|
|
})
|
|
|
|
.given(['$number $model model[s]?'], function(number, model) {
|
|
|
|
return create(number, model);
|
|
|
|
})
|
|
|
|
.given(['$number $model model[s]? with the value "$value"'], function(number, model, value) {
|
|
|
|
return create(number, model, value);
|
|
|
|
})
|
|
|
|
.given(
|
|
|
|
['$number $model model[s]? from yaml\n$yaml', '$number $model model[s]? from json\n$json'],
|
|
|
|
function(number, model, data) {
|
|
|
|
return create(number, model, data);
|
|
|
|
}
|
2020-11-11 16:59:15 +00:00
|
|
|
)
|
|
|
|
.given(['settings from yaml\n$yaml'], function(data) {
|
2019-02-21 13:05:05 +00:00
|
|
|
return Object.keys(data).forEach(function(key) {
|
2020-12-15 15:34:54 +00:00
|
|
|
win.localStorage[key] = JSON.stringify(data[key]);
|
2019-02-21 13:05:05 +00:00
|
|
|
});
|
2020-12-15 15:34:54 +00:00
|
|
|
})
|
|
|
|
.given(['ui_config from yaml\n$yaml'], function(data) {
|
|
|
|
doc.cookie = `CONSUL_UI_CONFIG=${JSON.stringify(data)}`;
|
2019-02-21 13:05:05 +00:00
|
|
|
});
|
|
|
|
}
|