Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
123456789101112131415 |
- // @flow
-
- /**
- * Indicates whether the test mode is enabled. When it's enabled
- * {@link TestHint} and other components from the testing package will be
- * rendered in various places across the app to help with automatic testing.
- *
- * @param {Object} state - The redux store state.
- * @returns {boolean}
- */
- export function isTestModeEnabled(state: Object): boolean {
- const testingConfig = state['features/base/config'].testing;
-
- return Boolean(testingConfig && testingConfig.testMode);
- }
|