mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-06-16 02:14:50 +08:00
* Add template support * Update templates version check * Update TypeScript template README
26 lines
600 B
JavaScript
26 lines
600 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import initDOM from './initDOM';
|
|
|
|
describe('Integration', () => {
|
|
describe('jsconfig.json/tsconfig.json', () => {
|
|
let doc;
|
|
|
|
afterEach(() => {
|
|
doc && doc.defaultView.close();
|
|
doc = undefined;
|
|
});
|
|
|
|
it('Supports setting baseUrl to src', async () => {
|
|
doc = await initDOM('base-url');
|
|
|
|
expect(doc.getElementById('feature-base-url').childElementCount).toBe(4);
|
|
});
|
|
});
|
|
});
|