stream-chat-react-native-core
Version:
The official React Native and Expo components for Stream Chat, a service for building chat applications
14 lines (11 loc) • 358 B
text/typescript
import { Generic } from './offline-feature';
import { OptimisticUpdates } from './optimistic-update';
/**
* We cannot have two parallel test suites accessing the same database.
* So we force the offline support related tests to run sequentially.
*/
const runOfflineSupportTests = () => {
Generic();
OptimisticUpdates();
};
runOfflineSupportTests();