test: add interm fix for test that rely on an index.d.ts file (#28884)

At the moment, certain tests relies on resolving the module with an index.d.ts, this root cause might be some implementations are missing from the mocks.

Similar to: 58b4045359

PR Close #28884
This commit is contained in:
Alan
2019-03-06 09:06:34 +01:00
committed by Kara Erickson
parent b3ffdf92c5
commit b012ab210b
2 changed files with 14 additions and 2 deletions

View File

@ -591,6 +591,11 @@ function readBazelWrittenFilesFrom(
}
try {
processDirectory(bazelPackageRoot, path.join('/node_modules/@angular', packageName));
// todo: check why we always need an index.d.ts
if (fs.existsSync(path.join(bazelPackageRoot, `${packageName}.d.ts`))) {
const content = fs.readFileSync(path.join(bazelPackageRoot, `${packageName}.d.ts`), 'utf8');
map.set(path.join('/node_modules/@angular', packageName, 'index.d.ts'), content);
}
} catch (e) {
console.error(
`Consider adding //packages/${packageName} as a data dependency in the BUILD.bazel rule for the failing test`);