Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync develop branch with master branch #42

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Replace WordPress default search with Google Custom Search results.

**Requires at least:** 4.8

**Tested up to:** 6.4.2
**Tested up to:** 6.7.1`

**License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: rtCamp, kiranpotphode, sh4lin
Donate link: https://rtcamp.com/
Tags: google, search, cse, custom search engine, programmable search, programmable search engine, google cse, google custom search engine, google programmable search, google programmable search engine, google search
Requires at least: 4.8
Tested up to: 6.4.2
Tested up to: 6.7.1
Stable tag: 1.1
Requires PHP: 7.4
License: GPLv2 or later
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e-playwright/page/CommonFunction.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class commonFunction {
await this.page.goto(WP_BASE_URL + "/?s=migration");

await this.page.waitForTimeout(8000);
expect(this.page.locator(".alignwide.wp-block-query-title")).toHaveText(
expect(this.page.locator(".wp-block-query-title")).toHaveText(
"Search results for: “migration”"
);

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e-playwright/specs/03_custom-search-test.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test.describe( "Validate the custom search", () => {

// Expect the posts title.
expect(
page.locator('role=link[name="Migrate from any CMS to WordPress"i]')
page.locator('h2.wp-block-post-title >> text=Migrate from any CMS to WordPress')
).toHaveText("Migrate from any CMS to WordPress");
});
});
Loading