Squashed 'frontend/' content from commit 63375d1
git-subtree-dir: frontend git-subtree-split: 63375d198b2160a3a5fc4427efe888f6c37bd92f
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user