Skip to content

Commit

Permalink
Update Chrome Web Store domain
Browse files Browse the repository at this point in the history
Update Chrome Web Store domain
  • Loading branch information
gilhanan committed Feb 2, 2024
1 parent 2344724 commit 64724bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions e2e/specs/projects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for (const { route, path } of paths) {
id: "chat-gpt-rtl",
name: "ChatGPT RTL",
category: "Chrome Extension",
url: "https://chrome.google.com/webstore/detail/chatgpt-rtl/nabcbpmmefiigmjpopfciegmlgihkofd",
url: "https://chromewebstore.google.com/detail/chatgpt-rtl/nabcbpmmefiigmjpopfciegmlgihkofd",
repo: "https://github.com/gilhanan/rtl-extensions/tree/main/extensions/chatgpt",
},
] satisfies Project[];
Expand Down Expand Up @@ -84,7 +84,8 @@ for (const { route, path } of paths) {
const responsePromise$ = context.waitForEvent(
"response",
(response) =>
response.url().includes(url) && response.status() === 200,
response.url().includes(url.split("/").slice(-2).join("/")) &&
response.status() === 200,
);

await projects.clickOnProjectTileLink(project);
Expand Down
4 changes: 2 additions & 2 deletions src/app/data/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const projects: Project[] = [
{
id: "chat-gpt-rtl",
title: "ChatGPT RTL",
url: "https://chrome.google.com/webstore/detail/chatgpt-rtl/nabcbpmmefiigmjpopfciegmlgihkofd",
url: "https://chromewebstore.google.com/detail/chatgpt-rtl/nabcbpmmefiigmjpopfciegmlgihkofd",
category: "Chrome Extension",
repo: "https://github.com/gilhanan/rtl-extensions/tree/main/extensions/chatgpt",
images: {
Expand Down Expand Up @@ -79,7 +79,7 @@ export const projects: Project[] = [
{
id: "claude-rtl",
title: "Claude RTL",
url: "https://chrome.google.com/webstore/detail/claude-rtl/bogboalkhfnponhdoflinneddblhdfma",
url: "https://chromewebstore.google.com/detail/claude-rtl/bogboalkhfnponhdoflinneddblhdfma",
category: "Chrome Extension",
repo: "https://github.com/gilhanan/rtl-extensions/tree/main/extensions/claude",
images: {
Expand Down

0 comments on commit 64724bf

Please sign in to comment.