Configure Routing
How do I set the routing configuration?
Lastly, routing is enabled by default between the components. If desired, you can disable routing for isolated testing.
To disable routing
- open
/library/src/shared/constants/test.constants.ts - edit the
ComponentConfigand set theroutingproperty tofalse, like in the below example:
static CONFIG: ComponentConfig = {
refreshInterval: 5000,
locale: 'en-US',
theme: 'LIGHT',
routing: false, // <-- change this from true to false
customer: TestConstants.CUSTOMER_GUID,
fiat: 'USD'
};Updated 2 days ago
