Configure Routing
Enable or disable routing between web components in the demo app.
Disable routing
Routing between components is enabled by default. To disable it for isolated testing:
- Open
/library/src/shared/constants/test.constants.ts. - In the
ComponentConfig, setroutingtofalse:
static CONFIG: ComponentConfig = {
refreshInterval: 5000,
locale: 'en-US',
theme: 'LIGHT',
routing: false,
customer: TestConstants.CUSTOMER_GUID,
fiat: 'USD'
};Updated 12 days ago
