feat(test): rename project to feat upcoming challenges

This commit is contained in:
thomas
2023-04-08 13:36:57 +02:00
parent 3b45e10570
commit 95e0f6b5f8
31 changed files with 36 additions and 37 deletions

View File

@@ -0,0 +1,23 @@
import { AppComponent } from './app.component';
describe(AppComponent.name, () => {
it('shows error message and disabled button because no search criteria are typed', () => {
//todo
});
it('shows No book found because no book match the search', () => {
//todo
});
it('shows One book because the search matches one book', () => {
//todo
});
it('shows One book because the search matches one book even with different cases', () => {
//todo
});
it('shows a list of books because the search matches multiples books', () => {
//todo
});
});