优化
This commit is contained in:
14
client/shared/utils/__tests__/array-helper.spec.ts
Normal file
14
client/shared/utils/__tests__/array-helper.spec.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { joinArray } from '../array-helper';
|
||||
|
||||
describe('array-helper', () => {
|
||||
test('joinArray', () => {
|
||||
expect(joinArray([1, 2, 3], '5')).toMatchObject([1, '5', 2, '5', 3]);
|
||||
expect(joinArray([{ a: 1 }, { a: 2 }, { a: 3 }], '5')).toMatchObject([
|
||||
{ a: 1 },
|
||||
'5',
|
||||
{ a: 2 },
|
||||
'5',
|
||||
{ a: 3 },
|
||||
]);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user