mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 01:11:32 +03:00
refactor(server): use .toSorted (#10904)
This commit is contained in:
@@ -202,7 +202,7 @@ describe(StorageRepository.name, () => {
|
||||
.filter((entry) => entry[1])
|
||||
.map(([file]) => file);
|
||||
|
||||
expect(actual.sort()).toEqual(expected.sort());
|
||||
expect(actual.toSorted()).toEqual(expected.toSorted());
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
@@ -255,13 +255,11 @@ describe(AssetMediaService.name, () => {
|
||||
}
|
||||
|
||||
it('should be sorted (valid)', () => {
|
||||
// TODO: use toSorted in NodeJS 20.
|
||||
expect(valid).toEqual([...valid].sort());
|
||||
expect(valid).toEqual(valid.toSorted());
|
||||
});
|
||||
|
||||
it('should be sorted (invalid)', () => {
|
||||
// TODO: use toSorted in NodeJS 20.
|
||||
expect(invalid).toEqual([...invalid].sort());
|
||||
expect(invalid).toEqual(invalid.toSorted());
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -145,7 +145,7 @@ describe('mimeTypes', () => {
|
||||
|
||||
it('should be a sorted list', () => {
|
||||
const keys = Object.keys(mimeTypes.video);
|
||||
expect(keys).toEqual([...keys].sort());
|
||||
expect(keys).toEqual(keys.toSorted());
|
||||
});
|
||||
|
||||
it('should contain only video mime types', () => {
|
||||
@@ -171,7 +171,7 @@ describe('mimeTypes', () => {
|
||||
|
||||
it('should be a sorted list', () => {
|
||||
const keys = Object.keys(mimeTypes.sidecar);
|
||||
expect(keys).toEqual([...keys].sort());
|
||||
expect(keys).toEqual(keys.toSorted());
|
||||
});
|
||||
|
||||
it('should contain only xml mime types', () => {
|
||||
|
||||
Reference in New Issue
Block a user