使用REACT从巴别塔迁移到SWC
TL;DR
如何翻译节点脚本:
"test": "NODE_ENV=test riteway -r @babel/register 'src/**/*.test.js' | tap-nirvana",
使用SWC而不是巴别塔?
上下文
我们最近升级了Next.js版本。Next.js现在支持SWC instead of Babel.
我们项目中Reaction的单元测试是用RITEway编写的。测试命令为:
"test": "NODE_ENV=test riteway -r @babel/register 'src/**/*.test.js' | tap-nirvana",
它首先使用Babel转换文件,否则import
语句和JSX将导致错误。
在我们尝试迁移到SWC的过程中,我们在CLI上运气不佳。然而,我们发现了@swc-node/register
package。它允许我们将我们的命令转换为:
"test": "riteway -r @swc-node/register src/**/*.test.js | tap-nirvana"
它修复了类似import
语句的新语法,并且将运行这样的测试:
import { describe } from 'riteway';
describe('my test', async assert => {
assert({
given: 'true',
should: 'be true',
actual: true,
expected: true,
});
});
但是,像这样的Reaction组件的测试
import { describe } from 'riteway';
import render from 'riteway/render-component';
import Authentication from './user-authentication-component';
describe('user authentication component', async assert => {
const $ = render(<Authentication />);
assert({
given: 'just rendering',
should: "render 'Authentication'",
actual: $('*:contains("Authentication")').text(),
expected: 'Authentication',
});
});
仍引发以下错误:
$ yarn test
yarn run v1.22.17
$ riteway -r @swc-node/register src/**/*.test.js | tap-nirvana
/Users/user/dev/learning-flow/node_modules/@swc/core/index.js:135
return bindings.transformSync(isModule ? JSON.stringify(src) : src, isModule, toBuffer(newOptions));
^
Error: error: Expression expected
|
7 | const $ = render(<Authentication />);
| ^
error: Expression expected
|
7 | const $ = render(<Authentication />);
| ^
error: Unexpected token `)`. Expected this, import, async, function, [ for array literal, { for object literal, @ for decorator, function, class, null, true, false, number, bigint, string, regexp, ` for template literal, (, or an identifier
|
7 | const $ = render(<Authentication />);
| ^
Caused by:
0: failed to process js file
1: Syntax Error
at Compiler.transformSync
如何创建该命令以使其与SWC一起运行?
解决方案
经过一些试验,我发现如果您在每个文件(包括组件和测试)中import React from 'react';
并将文件扩展名更改为.jsx
(如in the docs所述),它就可以工作。
.js
。
我们尝试了setting .swcrc
,到目前为止没有任何成功。
我在此发布此答案,以防找不到配置.swcrc
的方法。
相关文章