1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-21 03:51:29 +00:00

MOved the brews search to its own file, writing out more tests

This commit is contained in:
Scott Tolksdorf
2017-01-27 10:36:07 -05:00
parent 2f82d3875e
commit 8e58e5aca9
6 changed files with 180 additions and 109 deletions

View File

@@ -111,4 +111,28 @@ describe('Brew API', () => {
});
});
describe('Search', () => {
it.skip('should be able to search for brews with given terms', ()=>{
});
it.skip('should exclude unpublished brews and have no editIdsh', ()=>{
});
it.skip('should sort the search', ()=>{
});
it.skip('should use pagniation on the search', ()=>{
});
});
describe('User', () => {
it.skip('should be able to query brews for a specific user', ()=>{
});
it.skip('should return full access to brews if loggedin user is queried user', ()=>{
});
});
});