diff --git a/scripts/__snapshots__/e2e-templates.test.js.snap b/scripts/__snapshots__/e2e-templates.test.js.snap index c2722694e..aec9ce98c 100644 --- a/scripts/__snapshots__/e2e-templates.test.js.snap +++ b/scripts/__snapshots__/e2e-templates.test.js.snap @@ -3761,6 +3761,7 @@ exports[`Templates React InstantSearch File content: src/App.css 1`] = ` exports[`Templates React InstantSearch File content: src/App.js 1`] = ` "import React, { Component } from 'react'; +import algoliasearch from 'algoliasearch/lite'; import { InstantSearch, Hits, @@ -3772,6 +3773,11 @@ import { import PropTypes from 'prop-types'; import './App.css'; +const searchClient = algoliasearch( + 'appId', + 'apiKey' +); + class App extends Component { render() { return ( @@ -3789,11 +3795,7 @@ class App extends Component {