Skip to content

Commit d38ba53

Browse files
committed
fix: add missing export statements in unit test files
1 parent 61d25a4 commit d38ba53

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/test/unit/addGroupScope.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,5 @@ describe('addGroup scope 自動決定邏輯', () => {
9191
});
9292
});
9393
});
94+
95+
export {};

src/test/unit/groupAggregation.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,5 @@ describe('群組聚合邏輯單元測試', () => {
119119
expect(aggregated[0].files).toEqual(['file1.ts', 'file2.ts']);
120120
});
121121
});
122+
123+
export {};

src/test/unit/scopeDescription.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,5 @@ describe('computeScopeDescription', () => {
135135
});
136136
});
137137
});
138+
139+
export {};

src/test/unit/scopeFilterRoot.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,3 +225,5 @@ describe('scope 篩選後根層 tree 結構', () => {
225225
});
226226
});
227227
});
228+
229+
export {};

0 commit comments

Comments
 (0)