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:
Michel Weststrate
2020-07-10 04:27:33 -07:00
committed by Facebook GitHub Bot
parent 6994377c25
commit 32933f4bf1
4 changed files with 3 additions and 3 deletions

View File

@@ -8,14 +8,14 @@
*/ */
import {BaseDevice} from 'flipper'; import {BaseDevice} from 'flipper';
import CrashReporterPlugin from '../../crash_reporter'; import CrashReporterPlugin from '..';
import type {PersistedState, Crash} from '../../crash_reporter'; import type {PersistedState, Crash} from '..';
import { import {
parseCrashLog, parseCrashLog,
getNewPersisitedStateFromCrashLog, getNewPersisitedStateFromCrashLog,
parsePath, parsePath,
shouldShowCrashNotification, shouldShowCrashNotification,
} from '../../crash_reporter'; } from '..';
import {getPluginKey, getPersistedState} from 'flipper'; import {getPluginKey, getPersistedState} from 'flipper';
function setDefaultPersistedState(defaultState: PersistedState) { function setDefaultPersistedState(defaultState: PersistedState) {