【发布时间】:2021-11-04 22:40:20
【问题描述】:
我正在尝试使用 Jest 运行测试,因此我在测试文件的顶部导入以下内容:
import { describe, it, expect } from '@jest/globals'
但是,当我运行测试时,我收到以下错误:SyntaxError: Cannot use import statement outside a module
我该如何解决这个问题?
【问题讨论】:
标签: javascript unit-testing import jestjs syntax-error