We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a78940 commit f4b4f44Copy full SHA for f4b4f44
packages/js/tests/integrations-page/GoogleSiteKitIntegration.test.js
@@ -4,7 +4,12 @@ import { GoogleSiteKitIntegration } from "../../src/integrations-page/google-sit
4
5
describe( "GoogleSiteKitIntegration", () => {
6
it( "renders the integration component", () => {
7
- render( <GoogleSiteKitIntegration /> );
+ render( <GoogleSiteKitIntegration
8
+ isActive={ false }
9
+ afterSetup={ false }
10
+ isInstalled={ false }
11
+ isConnected={ false }
12
+ /> );
13
expect( screen.getByText( "Site Kit by Google" ) ).toBeInTheDocument();
14
} );
15
0 commit comments