Renamed outdated schedule/tracing referecnes (#14177)

This commit is contained in:
Brian Vaughn 2018-11-09 12:37:03 -08:00 committed by GitHub
parent 2dd4ba11e0
commit d5e1bf07d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -180,11 +180,11 @@ let warnAboutInvalidUpdates;
if (enableSchedulerTracing) {
// Provide explicit error message when production+profiling bundle of e.g. react-dom
// is used with production (non-profiling) bundle of schedule/tracing
// is used with production (non-profiling) bundle of scheduler/tracing
invariant(
__interactionsRef != null && __interactionsRef.current != null,
'It is not supported to run the profiling version of a renderer (for example, `react-dom/profiling`) ' +
'without also replacing the `schedule/tracing` module with `schedule/tracing-profiling`. ' +
'without also replacing the `scheduler/tracing` module with `scheduler/tracing-profiling`. ' +
'Your bundler might have a setting for aliasing both modules. ' +
'Learn more at http://fb.me/react-profiling',
);

View File

@ -11,7 +11,7 @@
'use strict';
describe('ReactTracing', () => {
it('should error if profiling renderer and non-profiling schedule/tracing bundles are combined', () => {
it('should error if profiling renderer and non-profiling scheduler/tracing bundles are combined', () => {
jest.resetModules();
const ReactFeatureFlags = require('shared/ReactFeatureFlags');