Open
Description
Command
test
Description
The improved builder @angular-devkit/build-angular:karma which uses esbuild is missing the "loader" option. It would be really useful to have the option to require files in tests.
Describe the solution you'd like
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/styles.css"
],
"scripts": [],
"builderMode": "application",
**"loader": {
".html": "text"
}**
}
}
Describe alternatives you've considered
No response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment