Skip to content

Commit

Permalink
chore: rename upload-button to feed-button
Browse files Browse the repository at this point in the history
  • Loading branch information
mamadoudicko committed Oct 9, 2023
1 parent 754987e commit c4ae896
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const ChatInput = ({
<Button
className="p-0"
variant={"tertiary"}
data-testid="upload-button"
data-testid="feed-button"
type="button"
onClick={() => setShouldDisplayFeedCard(true)}
tooltip={t("add_content_card_button_tooltip")}
Expand Down
2 changes: 1 addition & 1 deletion frontend/e2e/tests/crawl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { login } from "../utils/login";
export const crawlTests = (): void => {
test("it should be able to add url to crawl", async ({ page }) => {
await login(page);
await page.getByTestId("upload-button").click();
await page.getByTestId("feed-button").click();
await page.getByTestId("feed-card").isVisible();
await page.getByTestId("urlToCrawlInput").click();
await page.getByTestId("urlToCrawlInput").fill("https://quivr.app");
Expand Down

0 comments on commit c4ae896

Please sign in to comment.