Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pytqqq/beb14efb274145ba7e526b78ffc59d79 to your computer and use it in GitHub Desktop.
Save pytqqq/beb14efb274145ba7e526b78ffc59d79 to your computer and use it in GitHub Desktop.
import React from "react";
import { View } from "react-native";
import { measurePerformance } from "reassure";
const Component = () => {
return <View />;
};
test("mounts Component", async () => {
await measurePerformance(<Component />);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment