Skip to content

Commit

Permalink
fix tests warnings of required props
Browse files Browse the repository at this point in the history
  • Loading branch information
vraja-pro committed Jan 10, 2025
1 parent 5a78940 commit f4b4f44
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import { GoogleSiteKitIntegration } from "../../src/integrations-page/google-sit

describe( "GoogleSiteKitIntegration", () => {
it( "renders the integration component", () => {
render( <GoogleSiteKitIntegration /> );
render( <GoogleSiteKitIntegration
isActive={ false }
afterSetup={ false }
isInstalled={ false }
isConnected={ false }
/> );
expect( screen.getByText( "Site Kit by Google" ) ).toBeInTheDocument();
} );

Expand Down

0 comments on commit f4b4f44

Please sign in to comment.