Skip to content

Commit

Permalink
Use a well-formed URL in test
Browse files Browse the repository at this point in the history
  • Loading branch information
kneth committed Jan 25, 2024
1 parent bd2fad2 commit 1d325c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/realm-react/src/__tests__/AppProvider.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jest.mock("react-native/Libraries/Animated/NativeAnimatedHelper");
describe("AppProvider", () => {
it("returns the configured app with useApp", async () => {
const wrapper = ({ children }: { children: React.ReactNode }) => (
<AppProvider id="someId" app={{ name: "someName", version: "42" }} baseUrl="someurl">
<AppProvider id="someId" app={{ name: "someName", version: "42" }} baseUrl="http://someurl">
{children}
</AppProvider>
);
Expand Down

0 comments on commit 1d325c2

Please sign in to comment.