Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dwmkerr/react-native-crash-tester

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dwmkerr/react-native-crash-tester

Deliberately crash your app. Good for testing crash reporting services.

  • 0.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
increased by157.14%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-crash-tester

Deliberately crash your app. Good for testing crash reporting services.

Installation

npm install react-native-crash-tester

or

yarn add react-native-crash-tester

Usage

Trigger a Native Crash

import CrashTester from 'react-native-crash-tester';

CrashTester.nativeCrash();
CrashTester.nativeCrash('Custom message!');

Implementation notes:

  • For Android, throws a RuntimeException
  • For iOS, calls fatalError which causes a non-recoverable crash

Trigger a Native Exception

import CrashTester from 'react-native-crash-tester';

CrashTester.nativeException();
CrashTester.nativeException('Custom message!');

Implementation notes:

  • For Android, throws a RuntimeException
  • For iOS, raises a NSException, which can potentially be caught by an exception handler

Trigger a JavaScript Crash

import CrashTester from 'react-native-crash-tester';

CrashTester.jsCrash();
CrashTester.jsCrash('Custom message!');

Implementation notes:

  • Calls throw Error to trigger an exception

Block the UI Thread

Blocking the UI thread can be useful to test things like Watchdog Terminations:

import CrashTester from 'react-native-crash-tester';

// block the UI thread for 60 seconds...
CrashTester.blockUIThread(60);

Implementation notes:

  • For iOS, calls sleepForTimeInterval on dispatch_get_main_queue to block the UI thread

Test a React Error Boundary

import * as React from 'react';
import { Button } from 'react-native';
import { CrashingComponent } from 'react-native-crash-tester';
import ErrorBoundary from './MyErrorBoundary';

function TestComponent() {
  const [shown, setShown] = React.useState(false);

  <ErrorBoundary>
    <Button title="Crash" onPress={() => setShown(true)} />
    {shown && <CrashingComponent />}
  </ErrorBoundary>;
}

Implementation notes:

  • Mounts a <View>''</View> component which will throw an exception

You can run the app in ./example to see sample usage.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

Keywords

FAQs

Package last updated on 30 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc