Skip to content

Commit f4b4f44

Browse files
committed
fix tests warnings of required props
1 parent 5a78940 commit f4b4f44

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/js/tests/integrations-page/GoogleSiteKitIntegration.test.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import { GoogleSiteKitIntegration } from "../../src/integrations-page/google-sit
44

55
describe( "GoogleSiteKitIntegration", () => {
66
it( "renders the integration component", () => {
7-
render( <GoogleSiteKitIntegration /> );
7+
render( <GoogleSiteKitIntegration
8+
isActive={ false }
9+
afterSetup={ false }
10+
isInstalled={ false }
11+
isConnected={ false }
12+
/> );
813
expect( screen.getByText( "Site Kit by Google" ) ).toBeInTheDocument();
914
} );
1015

0 commit comments

Comments
 (0)