Added short URLs orderBy handling to the query state

This commit is contained in:
Alejandro Celaya
2021-12-25 19:51:25 +01:00
parent 91f319df65
commit 49c841ca07
12 changed files with 94 additions and 52 deletions

View File

@@ -22,4 +22,12 @@ describe('ordering', () => {
expect(determineOrderDir('bar', 'bar', 'DESC')).toBeUndefined();
});
});
describe('orderToString', () => {
test.todo('casts the order to string');
});
describe('stringToOrder', () => {
test.todo('casts a string to an order objects');
});
});