From c3aea737ffc3bef09a363052b1210d2c4ddc922e Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 3 Apr 2019 00:21:41 +0200 Subject: [PATCH] build: add render3 entry-point to legacy test systemjs config (#29675) Until the legacy job has been migrated to Bazel w/ Saucelabs, we need to add the `render3` entry-point to the test SystemJS configuration so that developers don't get inconsistent behavior between Bazel tests and the legacy tests. e.g. https://circleci.com/gh/angular/angular/270102 PR Close #29675 --- test-main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test-main.js b/test-main.js index 9514ddd330..59e8c28c02 100644 --- a/test-main.js +++ b/test-main.js @@ -31,6 +31,7 @@ System.config({ 'rxjs': 'node_modules/rxjs', }, packages: { + '@angular/core/src/render3': {main: 'index.js', defaultExtension: 'js'}, '@angular/core/testing': {main: 'index.js', defaultExtension: 'js'}, '@angular/core': {main: 'index.js', defaultExtension: 'js'}, '@angular/animations/browser/testing': {main: 'index.js', defaultExtension: 'js'},