29 lines
652 B
JavaScript
29 lines
652 B
JavaScript
|
|
/**
|
||
|
|
* 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 ReactNoopServer;
|
||
|
|
|
||
|
|
describe('ReactServer', () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
jest.resetModules();
|
||
|
|
|
||
|
|
React = require('react');
|
||
|
|
ReactNoopServer = require('react-noop-renderer/server');
|
||
|
|
});
|
||
|
|
|
||
|
|
it('can call render', () => {
|
||
|
|
let result = ReactNoopServer.render(<div>hello world</div>);
|
||
|
|
expect(result).toEqual([{type: 'div', props: {children: 'hello world'}}]);
|
||
|
|
});
|
||
|
|
});
|