test(ivy): add/remove fixmes in packages/bazel/test/ngc-wrapped (#27302)
PR Close #27302
This commit is contained in:
parent
eb99753e4a
commit
88c30e231a
|
@ -31,7 +31,7 @@ jasmine_node_test(
|
||||||
":angular_core",
|
":angular_core",
|
||||||
"//packages/bazel/test/ngc-wrapped/empty:empty_tsconfig.json",
|
"//packages/bazel/test/ngc-wrapped/empty:empty_tsconfig.json",
|
||||||
"//packages/bazel/test/ngc-wrapped/empty:tsconfig.json",
|
"//packages/bazel/test/ngc-wrapped/empty:tsconfig.json",
|
||||||
|
"//packages/private/testing",
|
||||||
"@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto",
|
"@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto",
|
||||||
],
|
],
|
||||||
tags = ["fixme-ivy-aot"],
|
|
||||||
)
|
)
|
||||||
|
|
|
@ -5,7 +5,7 @@ package(default_visibility = ["//packages/bazel/test:__subpackages__"])
|
||||||
ng_module(
|
ng_module(
|
||||||
name = "empty",
|
name = "empty",
|
||||||
srcs = ["empty.ts"],
|
srcs = ["empty.ts"],
|
||||||
tags = ["fixme-ivy-aot"],
|
tags = ["fixme-ivy-aot"], # FW-741: ngtsc breaks tsc module resolution
|
||||||
tsconfig = ":tsconfig.json",
|
tsconfig = ":tsconfig.json",
|
||||||
deps = [
|
deps = [
|
||||||
"//packages/core",
|
"//packages/core",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
* found in the LICENSE file at https://angular.io/license
|
* found in the LICENSE file at https://angular.io/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import {fixmeIvy} from '@angular/private/testing';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
|
||||||
|
@ -13,7 +14,10 @@ import {setup} from './test_support';
|
||||||
|
|
||||||
describe('ngc_wrapped', () => {
|
describe('ngc_wrapped', () => {
|
||||||
|
|
||||||
it('should work', () => {
|
// fixmeIvy placeholder to prevent jasmine from erroring out because there are no specs
|
||||||
|
it('should be removed once the fixmeIvy below is resolved', () => {});
|
||||||
|
|
||||||
|
fixmeIvy('FW-741: ngtsc breaks tsc module resolution') && it('should work', () => {
|
||||||
const {read, write, runOneBuild, writeConfig, shouldExist, basePath} = setup();
|
const {read, write, runOneBuild, writeConfig, shouldExist, basePath} = setup();
|
||||||
|
|
||||||
write('some_project/index.ts', `
|
write('some_project/index.ts', `
|
||||||
|
|
Loading…
Reference in New Issue