テストでJSX をトランスパイルする際の問題h()
。すべての構成ファイルは create-react-app に似ており、変更を除外しTypeScript
、preact
create-react-app my-app --script=react-scripts-ts
TypeScriptプロジェクト用に-経由でアプリを作成します。次に、イジェクトして(使用しないでください) に変更react
します。preact
preact-compat
preact
I'm add to package.json
into babel.plugins section
new plugin ["babel-plugin-transform-react-jsx", { pragma: "h"}]
-デフォルトの代わり<JSX />
にh(JSX)
関数呼び出しにトランスパイルするため (移行React.createElement(JSX)
ガイドhttps://preactjs.com/guide/switching-to-preact )。
そして、これはうまくいきます。
しかし、テストにはトランスパイルの構成が異なります。デフォルトは<JSX />
トランスパイルです。React.createElement(JSX)
そしてテストで私はエラーを取りますReferenceError: React is not defined at Object.<anonymous> (src/Linkify/Linkify.test.tsx:39:21)
。テストおよびテスト済みファイルに手動で変更<JSX />
すると、動作します。h(SomeComponent)
テストのためにトランスパイル<JSX />
する方法はh(JSX)
?
// typescriptTransform.js
// Copyright 2004-present Facebook. All Rights Reserved.
'use strict';
const fs = require('fs');
const crypto = require('crypto');
const tsc = require('typescript');
const tsconfigPath = require('app-root-path').resolve('/tsconfig.json');
const THIS_FILE = fs.readFileSync(__filename);
let compilerConfig = {
module: tsc.ModuleKind.CommonJS,
jsx: tsc.JsxEmit.React,
};
if (fs.existsSync(tsconfigPath)) {
try {
const tsconfig = tsc.readConfigFile(tsconfigPath).config;
if (tsconfig && tsconfig.compilerOptions) {
compilerConfig = tsconfig.compilerOptions;
}
} catch (e) {
/* Do nothing - default is set */
}
}
module.exports = {
process(src, path, config, options) {
if (path.endsWith('.ts') || path.endsWith('.tsx')) {
let compilerOptions = compilerConfig;
if (options.instrument) {
// inline source with source map for remapping coverage
compilerOptions = Object.assign({}, compilerConfig);
delete compilerOptions.sourceMap;
compilerOptions.inlineSourceMap = true;
compilerOptions.inlineSources = true;
// fix broken paths in coverage report if `.outDir` is set
delete compilerOptions.outDir;
}
const tsTranspiled = tsc.transpileModule(src, {
compilerOptions: compilerOptions,
fileName: path,
});
return tsTranspiled.outputText;
}
return src;
},
getCacheKey(fileData, filePath, configStr, options) {
return crypto
.createHash('md5')
.update(THIS_FILE)
.update('\0', 'utf8')
.update(fileData)
.update('\0', 'utf8')
.update(filePath)
.update('\0', 'utf8')
.update(configStr)
.update('\0', 'utf8')
.update(JSON.stringify(compilerConfig))
.update('\0', 'utf8')
.update(options.instrument ? 'instrument' : '')
.digest('hex');
},
};
テストサンプル:
import { h, render } from 'preact';
import Linkify from './Linkify';
it('renders without crashing', () => {
const div = document.createElement('div');
render(<Linkify children={'text'} />, div);
});