Skip to content

Commit

Permalink
refactor(devtools): add missing imports
Browse files Browse the repository at this point in the history
Some of the devtools commits were merged into v19
(probably shouldn't have) and were missing imports.
This commit adds missing imports to re-enable tests.
  • Loading branch information
pkozlowski-opensource committed Dec 2, 2024
1 parent 4392cce commit 966e115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import {IndexedNode} from './index-forest';
import {MatIcon} from '@angular/material/icon';
import {FilterComponent} from './filter/filter.component';
import {MatTooltip} from '@angular/material/tooltip';
import {takeUntilDestroyed} from '@angular/core/rxjs-interop';

@Component({
selector: 'ng-directive-forest',
Expand Down
2 changes: 1 addition & 1 deletion devtools/projects/ng-devtools/src/lib/devtools_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.dev/license
*/

import {Component} from '@angular/core';
import {Component, signal} from '@angular/core';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {FrameManager} from './frame_manager';
import {DevToolsComponent} from './devtools.component';
Expand Down

0 comments on commit 966e115

Please sign in to comment.