fix(ivy): enable packages/core/test/render3 test for AoT (#26863)
PR Close #26863
This commit is contained in:

committed by
Kara Erickson

parent
516af6c531
commit
c13f46c7c5
@ -9,11 +9,10 @@ ng_module(
|
||||
srcs = ["index.ts"],
|
||||
tags = [
|
||||
"ivy-only",
|
||||
"no-ivy-jit",
|
||||
],
|
||||
deps = [
|
||||
"//packages/core",
|
||||
"//packages/platform-browser-dynamic",
|
||||
"//packages/platform-browser",
|
||||
],
|
||||
)
|
||||
|
||||
@ -28,12 +27,11 @@ ng_rollup_bundle(
|
||||
entry_point = "packages/core/test/bundling/hello_world_r2/index.js",
|
||||
tags = [
|
||||
"ivy-only",
|
||||
"no-ivy-jit",
|
||||
],
|
||||
deps = [
|
||||
":hello_world",
|
||||
"//packages/core",
|
||||
"//packages/platform-browser-dynamic",
|
||||
"//packages/platform-browser",
|
||||
],
|
||||
)
|
||||
|
||||
@ -43,7 +41,6 @@ ts_library(
|
||||
srcs = glob(["*_spec.ts"]),
|
||||
tags = [
|
||||
"ivy-only",
|
||||
"no-ivy-jit",
|
||||
],
|
||||
deps = [
|
||||
"//packages:types",
|
||||
@ -63,7 +60,6 @@ jasmine_node_test(
|
||||
],
|
||||
tags = [
|
||||
"ivy-only",
|
||||
"no-ivy-jit",
|
||||
],
|
||||
deps = [":test_lib"],
|
||||
)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
import {Component, NgModule} from '@angular/core';
|
||||
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
||||
import {platformBrowser} from '@angular/platform-browser';
|
||||
|
||||
@Component({selector: 'hello-world', template: 'Hello World!'})
|
||||
export class HelloWorldComponent {
|
||||
@ -16,4 +16,4 @@ export class HelloWorldComponent {
|
||||
export class HelloWorldModule {
|
||||
}
|
||||
|
||||
platformBrowserDynamic().bootstrapModule(HelloWorldModule);
|
||||
platformBrowser().bootstrapModule(HelloWorldModule);
|
||||
|
Reference in New Issue
Block a user