-
Notifications
You must be signed in to change notification settings - Fork 48.4k
/
Copy pathReactTopLevelText-test.js
40 lines (35 loc) · 1.16 KB
/
ReactTopLevelText-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails react-core
* @jest-environment node
*/
'use strict';
let React;
let ReactNoop;
let Scheduler;
// This is a new feature in Fiber so I put it in its own test file. It could
// probably move to one of the other test files once it is official.
describe('ReactTopLevelText', () => {
beforeEach(() => {
jest.resetModules();
React = require('react');
ReactNoop = require('react-noop-renderer');
Scheduler = require('scheduler');
});
it('should render a component returning strings directly from render', () => {
const Text = ({value}) => value;
ReactNoop.render(<Text value="foo" />);
expect(Scheduler).toFlushWithoutYielding();
expect(ReactNoop).toMatchRenderedOutput('foo');
});
it('should render a component returning numbers directly from render', () => {
const Text = ({value}) => value;
ReactNoop.render(<Text value={10} />);
expect(Scheduler).toFlushWithoutYielding();
expect(ReactNoop).toMatchRenderedOutput('10');
});
});