Enabled all unit tests to run locally
Summary: Unit tests with `.electron.tsx` are not run locally, as it is assumed they need Electron (?). However, since FBLogger is stubbed by default, it looks they all are actually runnable locally now. Reviewed By: jknoxville Differential Revision: D22431234 fbshipit-source-id: 9376923255bb96e2d7fc3bc8c3ec09962a07739c
This commit is contained in:
committed by
Facebook GitHub Bot
parent
6994377c25
commit
32933f4bf1
@@ -8,14 +8,14 @@
|
||||
*/
|
||||
|
||||
import {BaseDevice} from 'flipper';
|
||||
import CrashReporterPlugin from '../../crash_reporter';
|
||||
import type {PersistedState, Crash} from '../../crash_reporter';
|
||||
import CrashReporterPlugin from '..';
|
||||
import type {PersistedState, Crash} from '..';
|
||||
import {
|
||||
parseCrashLog,
|
||||
getNewPersisitedStateFromCrashLog,
|
||||
parsePath,
|
||||
shouldShowCrashNotification,
|
||||
} from '../../crash_reporter';
|
||||
} from '..';
|
||||
import {getPluginKey, getPersistedState} from 'flipper';
|
||||
|
||||
function setDefaultPersistedState(defaultState: PersistedState) {
|
||||
Reference in New Issue
Block a user