If I have access to an angular2 application\'s code and there is a module that is supposedly lazy loaded, is there a way, independent of examining the code, that I can test that
Check the Network tab of chrome dev tools (ctrl + shift + i) in the Google Chrome browser.
If your module is not being lazy loaded you will see a row for the module in the network tab when the site first loads up.
If it is being lazily loaded properly then you will see the row for the module only when you navigate to the corresponding route.
Hope this helps.