typescript 当在Nest项目上运行Jest测试时,我的文件找不到一个在测试之外运行时没有问题的模块

lnvxswe2  于 2023-06-24  发布在  TypeScript
关注(0)|答案(1)|浏览(150)

我有一个NestJs文件,我试图用Jest编写一些测试,因为我试图在端点上运行一些e2e测试。我的测试文件位于控制器的同一目录级别。我正在尝试测试PlaceController,我的place.controller.spec.ts文件与PlaceService和PlaceController位于同一目录级别。
spec文件如下所示:

  1. import { Test, TestingModule } from '@nestjs/testing';
  2. import { PlaceController } from './place.controller';
  3. import { PlaceService } from './place.service';
  4. import { expect } from 'chai';
  5. describe('PlaceController', () => {
  6. let appController: PlaceController;
  7. beforeEach(async () => {
  8. const app: TestingModule = await Test.createTestingModule({
  9. controllers: [PlaceController],
  10. providers: [PlaceService],
  11. }).compile();
  12. appController = app.get<PlaceController>(PlaceController);
  13. });
  14. it('should be defined', () => {
  15. expect(appController).toBeDefined();
  16. });
  17. });

我的jest.config.ts看起来像这样:

  1. /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
  2. module.exports = {
  3. preset: 'ts-jest',
  4. testEnvironment: 'node',
  5. testMatch: ['**/**/*.spec.ts'],
  6. verbose: true,
  7. forceExit: true,
  8. clearMocks: true,
  9. resetMocks: true,
  10. restoreMocks: true,
  11. bail: false,
  12. };

我在项目根目录下的tsconfig.json是这样的:

  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./src",
  5. "outDir": "./dist",
  6. "incremental": true,
  7. "sourceMap": true,
  8. "declaration": false,
  9. "removeComments": true,
  10. "downlevelIteration": true,
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "module": "commonjs",
  14. "moduleResolution": "node",
  15. "importHelpers": true,
  16. "skipLibCheck": true,
  17. "target": "es2017",
  18. "typeRoots": [
  19. "node_modules/@types"
  20. ],
  21. "lib": [
  22. "es2018",
  23. "dom"
  24. ],
  25. "paths": {
  26. "@app/*": [
  27. "./client/app/*"
  28. ],
  29. "@assets/*": [
  30. "./client/assets/*"
  31. ],
  32. "@env/*": [
  33. "./client/environments/*"
  34. ],
  35. "@common/*": [
  36. "./common/*"
  37. ],
  38. "@server/*": [
  39. "./server/*"
  40. ]
  41. }
  42. },
  43. }

我不知道为什么,但是在所有控制器/controller.spec文件所在的目录中有另一个tsconfig文件。这不是我写的所以我不想碰它。但看起来是这样的

  1. {
  2. "extends": "../../tsconfig.json",
  3. "exclude": ["node_modules", "test", "dist"]
  4. }

为了运行测试,我在package.json脚本中有"test": "NODE_ENV=test jest"。但是,当我运行npm run test时,我得到了以下错误:

  1. Cannot find module '@server/app/api/place/place.dto' from 'src/server/app/api/place/place.controller.ts'
  2. Require stack:
  3. src/server/app/api/place/place.controller.ts
  4. src/server/app/api/place/place.controller.spec.ts
  5. > 1 | import { CreatePlaceDto } from '@server/app/api/place/place.dto';
  6. | ^
  7. 2 | import { PlaceService } from '@server/app/api/place/place.service';
  8. 3 | import { CrudRequest } from '@server/app/core/crud/crud';
  9. 4 | import {

但是当我正常运行应用程序时,而不是测试,一切都运行得很完美,当我在Postman中调用它时,我的API返回正确的响应。是什么导致了这个问题?谢谢你!

0aydgbwb

0aydgbwb1#

如果直接用'./'而不是src显示路径,问题就解决了。

相关问题