fix(test): move all test apps

This commit is contained in:
thomas
2023-10-18 10:35:53 +02:00
parent 058c7b04a0
commit 9a151be595
254 changed files with 273 additions and 273 deletions

View File

@@ -0,0 +1,31 @@
describe('AppComponent', () => {
describe('Given no search criteria', () => {
it('Then shows error message and disabled button', async () => {
//todo
});
});
describe('Given a search criteria with no book match', () => {
it('Then shows No book found', async () => {
//todo
});
});
describe('Given a search criteria with one book match', () => {
it('Then shows One book and no error', async () => {
//todo
});
});
describe('Given a search criteria in Uppercase with one book match', () => {
it('Then shows One book and no error', async () => {
//todo
});
});
describe('Given a search criteria with multple books matches', () => {
it('Then shows a list of books', async () => {
//todo
});
});
});