gpt4 book ai didi

javascript - 找不到模块 npm 脚本的导入功能

转载 作者:太空宇宙 更新时间:2023-11-04 01:46:32 25 4
gpt4 key购买 nike

//something.spec.js
import { myCustomGlob } from './scripts/index'
describe.only('generate index', () => {
console.log(myCustomGlob) //MODULE NOT FONUD ERROR
})

//script
const fs = require('fs')
const myCustomGlob = () => {
//some fs operation
}
export {
myCustomGlob
}

我有一个 npm 脚本,它使用 glob 和 fs 生成一些代码来创建新文件。但我也想为这些函数编写单元测试,但我收到 MODULE 'fs' NOT FOUND 错误。为什么?我以为导入 myCustomGlob 后就包含了“fs”?

最佳答案

尝试import * as fs from 'fs'或者尝试从第一个fs中删除引号。您正在使用字符串查找模块,但这不起作用。

关于javascript - 找不到模块 npm 脚本的导入功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51238659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com