build(bazel): re-enable packages/upgrade/test:test_web test with static_files in ts_web_test_suite (#24214)

PR Close #24214
This commit is contained in:
Greg Magolan
2018-05-30 23:49:37 -07:00
committed by Victor Berchet
parent 5f178f3a5a
commit 68a799e950
4 changed files with 17 additions and 10 deletions

View File

@ -28,7 +28,7 @@ export function createWithEachNg1VersionFn(setNg1: typeof setAngularJSGlobal) {
.reduce(
(prev, file) => prev.then(() => new Promise<void>((resolve, reject) => {
const script = document.createElement('script');
script.src = `base/node_modules/${file}`;
script.src = `base/angular/node_modules/${file}`;
script.onerror = reject;
script.onload = () => {
document.body.removeChild(script);