mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-25 18:55:27 -06:00
29 lines
1008 B
TypeScript
29 lines
1008 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { MatLegacyTableModule as MatTableModule } from '@angular/material/legacy-table';
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { ProjectRolesTableComponent } from './project-roles-table.component';
|
|
|
|
describe('ProjectRolesTableComponent', () => {
|
|
let component: ProjectRolesTableComponent;
|
|
let fixture: ComponentFixture<ProjectRolesTableComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ProjectRolesTableComponent],
|
|
imports: [NoopAnimationsModule, MatSortModule, MatTableModule],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ProjectRolesTableComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should compile', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|