-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Milestone
Description
Given the following parameters:
const parameters: {
"some_service_referenced_from_a_parameter": "@bar.serviceB"
}
And the following services configuration:
import ServiceA from ./ServiceA;
import ServiceB from ./ServiceB;
module.exports = [
{
"name": "foo.serviceA",
"service": ServiceA,
"arguments": [
"%some_service_referenced_from_a_parameter%"
],
},
{
"name": "bar.serviceB",
"service": ServiceB,
"singleton": true
}
]
And I instanciate Skippy with the defined services and parameters
When I ask skippy for service "foo.serviceA"
Then Skippy should resolve parameter "%some_service_referenced_from_a_parameter%" into value "@bar.serviceB"
And Skippy should resolve the value "@bar.serviceB" into a "bar.serviceB" service instanceReactions are currently unavailable