是否有一种方法可以在Vue模板和脚本中使用别名来映射vue-jest配置?
P粉476547076
2023-08-26 17:10:07
<p>依赖项: "@vue/cli-plugin-unit-jest": "^4.5.13", "@vue/test-utils": "^1.2.1", "vue-jest": "^3.0.7"</p>
<p>我有一个应用程序,在vue.config.js中设置了一个别名(比如说"foo"):</p>
<pre class="brush:php;toolbar:false;">module.exports = {
chainWebpack: (config) => {
// 将项目名称设置为别名
config.resolve.alias.set('foo', __dirname);
},
};</pre>
<p>对于导入语句和HTML标签的src属性...</p>
<p>在main.js中:</p>
<pre class="brush:php;toolbar:false;">...
import App from 'foo/src/components/core/App';
...</pre>
<p>在../src/core/App/index.vue中:</p>
<pre class="lang-html prettyprint-override"><code><script src="foo/src/components/core/App/script.js" />
<style module src="foo/src/components/core/App/style.css" />
<template src="foo/src/components/core/App/template.html" />
</code></pre>
<p>我知道我可以在jest.config.js中使用moduleNameMapper,类似于:</p>
<p><code>'^foo(.*)$': '<rootDir>$1',</code></p>
<p>然而,这不会映射出现在HTML标签的src属性中的别名。有没有办法通过配置设置或其他方式让vue-jest解释这些属性路径呢?</p>
<p>非常感谢任何建议。</p>
SFC中的URL解析
vue-jest
无法解析SFC中顶级块标签的src
URL,因此您需要在src/components/core/App/index.vue
中使用未别名的相对路径:模板内容中的URL解析
vue-jest
使用@vue/component-compiler-utils
编译模板,但URL解析需要transformAssetUrls
选项。vue-jest
3.x不支持向@vue/component-compiler-utils
传递选项,但在4.0.0-rc.1中通过templateCompiler.transformAssetUrls
配置实现。即使启用了URL解析,Vue CLI配置
jest
以返回空字符串以获取require
的媒体,包括图像。如果您的测试需要与正常解析的URL一起在生产环境中工作,您将需要一个模仿url-loader
的Jest转换器。Vue CLI配置加载器以如果大于4KB,则返回解析的文件名; 否则返回base64数据URL。要启用URL解析:
升级到
vue-jest
4:为自定义的
my-jest-url-loader
创建以下文件,稍后将在下面使用:为了避免意外覆盖Vue CLI的默认Jest预设,使用合并工具(例如
lodash.merge
)在jest.config.js
中插入自定义配置。在Jest全局中添加一个
vue-jest
配置,设置templateCompiler.transformAssetUrls
。修改合并预设的
transform
属性,使用我们的my-jest-url-loader
转换器来处理图像。这需要从默认Jest预设中删除其他图像转换器,以避免冲突。GitHub演示