Skip to content

Commit 84b55a8

Browse files
committed
test: ✅ fix starter
1 parent 6eb0627 commit 84b55a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/302-recipe-search-integration-testing-library-starter/src/app/recipe/recipe-search.integration.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ import {
77
import { RecipeSearch } from './recipe-search.ng';
88

99
describe(RecipeSearch.name, () => {
10-
it('searches recipes without filtering', async () => {
11-
const { getRecipeNames } = await mountRecipeSearch();
10+
it.todo('🚧 searches recipes without filtering', async () => {
11+
const { getRecipeNameEls } = await mountRecipeSearch();
1212

13-
expect(getRecipeNames()).toEqual(['Burger', 'Salad']);
13+
throw new Error('🚧 Work in progress!');
1414
});
1515

1616
async function mountRecipeSearch() {
1717
const { fixture } = await render(RecipeSearch);
1818
await fixture.whenStable();
1919

2020
return {
21-
getRecipeNames() {
21+
getRecipeNameEls() {
2222
throw new Error('🚧 Work in progress!');
2323
},
2424
};

0 commit comments

Comments
 (0)