During testing with ng test, I am facing an issue where all modules and components load correctly. However, the images included in <img>
tags are not rendered properly because they are not being served from the /assets folder as they would be during development or build using ng serve.
Furthermore, I am looking for a solution to include the global styles.scss/css file in the test environment. Currently, I can only get these styles to apply if I embed the CSS within a component and disable ViewEncapsulation.
I am currently using the latest Angular-CLI webpack release (Beta 15).
Any assistance on this matter would be highly appreciated.