test(ivy): add ability to find already passing tests (#27449)
PR Close #27449
This commit is contained in:
@ -168,8 +168,8 @@ describe('ngInjectableDef Bazel Integration', () => {
|
||||
expect(TestBed.get(INJECTOR).get('foo')).toEqual('bar');
|
||||
});
|
||||
|
||||
fixmeIvy('FW-646: Directive providers don\'t support primitive types') &&
|
||||
it('Component injector understands requests for INJECTABLE', () => {
|
||||
fixmeIvy('FW-646: Directive providers don\'t support primitive types')
|
||||
.it('Component injector understands requests for INJECTABLE', () => {
|
||||
@Component({
|
||||
selector: 'test-cmp',
|
||||
template: 'test',
|
||||
|
@ -41,8 +41,8 @@ describe('Ivy NgModule', () => {
|
||||
|
||||
it('works', () => { createInjector(JitAppModule); });
|
||||
|
||||
fixmeIvy('FW-645: jit doesn\'t support forwardRefs') &&
|
||||
it('throws an error on circular module dependencies', () => {
|
||||
fixmeIvy('FW-645: jit doesn\'t support forwardRefs')
|
||||
.it('throws an error on circular module dependencies', () => {
|
||||
@NgModule({
|
||||
imports: [forwardRef(() => BModule)],
|
||||
})
|
||||
|
@ -60,7 +60,7 @@ describe('ngtools_api (deprecated)', () => {
|
||||
});
|
||||
}
|
||||
|
||||
fixmeIvy('FW-629: ngtsc lists lazy routes') && it('should list lazy routes recursively', () => {
|
||||
fixmeIvy('FW-629: ngtsc lists lazy routes').it('should list lazy routes recursively', () => {
|
||||
writeSomeRoutes();
|
||||
const {program, host, options} = createProgram(['src/main.ts']);
|
||||
const routes = NgTools_InternalApi_NG_2.listLazyRoutes({
|
||||
|
Reference in New Issue
Block a user