06316e1715
git-subtree-dir: frontend git-subtree-split: 63375d198b2160a3a5fc4427efe888f6c37bd92f
25 lines
685 B
TypeScript
25 lines
685 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
|
|
import { GroupsComponent } from './groups.component'
|
|
import { GroupsService } from './groups.service'
|
|
|
|
xdescribe('GroupsComponent', () => {
|
|
let component: GroupsComponent
|
|
let fixture: ComponentFixture<GroupsComponent>
|
|
|
|
beforeEach(() => {
|
|
const acMock = {}
|
|
TestBed.configureTestingModule({
|
|
declarations: [GroupsComponent],
|
|
providers: [{ provide: GroupsService, useValue: acMock }],
|
|
})
|
|
fixture = TestBed.createComponent(GroupsComponent)
|
|
component = fixture.componentInstance
|
|
fixture.detectChanges()
|
|
})
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy()
|
|
})
|
|
})
|