♻️ style: format code with Prettier and fix .gitattributes
- Add *.yaml text eol=lf rule to .gitattributes for consistent line endings - Format cleaner.ts with Prettier (parameter and chain formatting) - Format CleanerPage.tsx (JSX formatting) - Format cleaner.test.ts (array formatting) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -140,11 +140,7 @@ describe('Cleaner Service (Unit)', () => {
|
||||
describe('batch and concurrency helpers', () => {
|
||||
it('should split orders into batches', () => {
|
||||
const batches = createBatches(['A', 'B', 'C', 'D', 'E'], 2)
|
||||
expect(batches).toEqual([
|
||||
['A', 'B'],
|
||||
['C', 'D'],
|
||||
['E']
|
||||
])
|
||||
expect(batches).toEqual([['A', 'B'], ['C', 'D'], ['E']])
|
||||
})
|
||||
|
||||
it('should identify missing orders', () => {
|
||||
|
||||
Reference in New Issue
Block a user