gpt4 book ai didi

node.js - Jest 测试 - 请将 'import "reflect-metadata"' 添加到入口点的顶部

转载 作者:行者123 更新时间:2023-12-04 11:26:22 25 4
gpt4 key购买 nike

我正在开发一个使用依赖注入(inject)的应用程序 tsyringe .这是接收存储库作为依赖项的服务的示例:

import { injectable, inject } from 'tsyringe'

import IAuthorsRepository from '@domains/authors/interfaces/IAuthorsRepository'

@injectable()
export default class ListAuthorsService {
constructor (
@inject('AuthorsRepository')
private authorsRepository: IAuthorsRepository
) {}
和依赖项容器:
import { container } from 'tsyringe'

import IAuthorsRepository from '@domains/authors/interfaces/IAuthorsRepository'
import AuthorsRepository from '@domains/authors/infra/typeorm/repositories/AuthorsRepository'

container.registerSingleton<IAuthorsRepository>(
'AuthorsRepository',
AuthorsRepository
)

export default container
在测试中,我不想使用容器上注册的依赖项,而是通过参数传递模拟实例。
let authorsRepository: AuthorsRepositoryMock
let listAuthorsService: ListAuthorsService

describe('List Authors', () => {
beforeEach(() => {
authorsRepository = new AuthorsRepositoryMock()
listAuthorsService = new ListAuthorsService(authorsRepository)
})
但我收到以下错误:

tsyringe requires a reflect polyfill. Please add 'import"reflect-metadata"' to the top of your entry point.


我的想法是 - “我可能需要在执行测试之前导入反射元数据包”。所以我创建了一个 jest.setup.ts导入 reflect-metadata包裹。但是出现另一个错误:
Error
存储库的实例不知何故未定义。
我想安静地运行我的测试。

最佳答案

首先在项目的根目录中创建一个 jest.setup.ts .
在您的 jest.config.js ,搜索这一行:

// A list of paths to modules that run some code to configure or set up the testing framework before each test
// setupFilesAfterEnv: [],
取消注释,并添加您的 jest.setup.ts文件路径。
// A list of paths to modules that run some code to configure or set up the testing framework before each test
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
现在在 jest.setup.ts 中导入反射元数据:
import 'reflect-metadata';
并再次运行测试。

关于node.js - Jest 测试 - 请将 'import "reflect-metadata"' 添加到入口点的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65233200/

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