Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Nov 13, 2024
1 parent 2a89750 commit 1ab83df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/cypress/integration/plugin-search.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe( 'Plugin Search', { testIsolation: true }, () => {
} );

it( 'should display matching plugin search results', () => {
cy.intercept(
cy.intercept(
{
method: 'POST',
url: /newfold-notifications(\/|%2F)v1(\/|%2F)notifications(\/|%2F)events/,
Expand All @@ -77,7 +77,7 @@ describe( 'Plugin Search', { testIsolation: true }, () => {
} );

it( 'should not display non-matching plugin search results', () => {
cy.intercept(
cy.intercept(
{
method: 'POST',
url: /newfold-notifications(\/|%2F)v1(\/|%2F)notifications(\/|%2F)events/,
Expand Down
1 change: 0 additions & 1 deletion tests/cypress/integration/theme-search.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const notifications = {
};

describe( 'Theme Search', { testIsolation: true }, () => {

beforeEach( () => {
wpLogin();
wpCli( 'transient delete newfold_notifications' );
Expand Down
2 changes: 1 addition & 1 deletion tests/cypress/wp-module-support/utils.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export const wpCli = ( cmd ) => {
cy.log( `${ key }: ${ value }` );
}
} );
};
};

0 comments on commit 1ab83df

Please sign in to comment.