nestjs 单元测试
启动单元测试 zengwe$ npm run test 运行效果 PASS src/admin/controllers/zeng-Try.controller.spec.ts Test Suites: 1 skipped, 14 passed, 14 of 15 total Tests: 7 skipped, 57 passed, 64 total Snapshots: 0 total Time: 7.422s, estimated 10s Ran all test suites related to changed files. Watch Usage: Press w to show more. controller单元测试 import { Body, Controller, Post, Get, Put, Delete, Query } from '@nestjs/common'; import { isNullOrUndefined } from 'util'; import { code } from '../../common/code'; import { zengTryService } from '../services/zeng-Try.service'; import { AddForm, UpdateForm, DeleteForm} from '.