Skip to content

Commit 81bcea1

Browse files
authored
chore: fix broken chips test (#2331)
1 parent b842b32 commit 81bcea1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/chips/chip-list.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ describe('MdChipList', () => {
2424
});
2525

2626
TestBed.compileComponents();
27+
}));
2728

29+
beforeEach(() => {
2830
fixture = TestBed.createComponent(StaticChipList);
2931
fixture.detectChanges();
3032

@@ -33,7 +35,7 @@ describe('MdChipList', () => {
3335
chipListInstance = chipListDebugElement.componentInstance;
3436
testComponent = fixture.debugElement.componentInstance;
3537
chips = chipListInstance.chips;
36-
}));
38+
});
3739

3840
describe('basic behaviors', () => {
3941
it('adds the `md-chip-list` class', () => {

0 commit comments

Comments
 (0)