87968: Include theme modules in tsconfig.spec.ts

Without this, Webpack errors out when building tests due to theme components missing from the TS compilation
This commit is contained in:
Yura Bondarenko
2022-02-25 10:34:04 +01:00
parent 9093ef4ae9
commit 621a874b29

View File

@@ -14,6 +14,7 @@
], ],
"include": [ "include": [
"src/**/*.spec.ts", "src/**/*.spec.ts",
"src/**/*.d.ts" "src/**/*.d.ts",
] "src/themes/**/*.module.ts"
],
} }