diff --git a/application/frontend/src/pages/Search/components/SearchBar.tsx b/application/frontend/src/pages/Search/components/SearchBar.tsx index 42020f7c0..2989ed3be 100644 --- a/application/frontend/src/pages/Search/components/SearchBar.tsx +++ b/application/frontend/src/pages/Search/components/SearchBar.tsx @@ -45,7 +45,7 @@ export const SearchBar = () => { }); }} label={ - diff --git a/application/frontend/src/test/basic-e2etest.ts b/application/frontend/src/test/basic-e2etest.ts index 3d4c6a521..a2405cd8c 100644 --- a/application/frontend/src/test/basic-e2etest.ts +++ b/application/frontend/src/test/basic-e2etest.ts @@ -20,7 +20,7 @@ describe('App.js', () => { await page.goto('http://localhost:5000'); await page.waitForSelector('#SearchBar'); const text = await page.$eval('#SearchBar', (e) => e.textContent); - expect(text).toContain('Topic text'); + expect(text).toContain('Search'); }); it('can search for random strs', async () => {