我收到错误expect(jest.fn()).toHaveBeenCalledWith(...expected)调用次数:0。代码:There is a component on submitting * as form value it will call formik on submit which willcall api asyncronouslyand storing data in
2021-09-05
我有一个函数将调用 Firebase 和getIdToken函数export const getUserFromDb = async () => {const path = "/user";const firebaseToken = getAuth().currentUser?.getIdToken(); // here need to get itconsole.log(firebaseToke
2021-09-08
我正在尝试编写一个测试用例,但我被卡住了,因为我无法在 jasmine 中的单元测试用例中复制窗口。我有一个如下的类public init(): void {this.Icon['text'] = window['SWIPE']['src'];this.Icon['altTag'] = window['SWIPE']['alt'];}我试图在 spec.ts 文件中模拟上述窗口对象,如下所示let
2020-12-21
我一直在尝试找出这里发生的问题,但我无法找出问题所在,也无法确定 TS 或 Spec.TS 文件中哪个名称导致错误。我需要您的帮助。edit-task-dialog.component.ts 文件import {Component, Inject, OnInit} from '@angular/core';import {FormControl, Validators} from '@angula
2020-04-03
在我的控制器中,我有:$onInit() {this.doShowInfoMsg()}doShowInfoMsg() {return this.checkProjectOnSalesLength = this.realEstateProjectMotivation.realEstateProjectOnSales.length < 1}在我的单元测试(极简主义)中:describe('iadMyI
2017-10-02
我正在尝试测试一个在其构造函数中注入了应用程序路由器的服务。根据 Julie Ralph 在 AngularConnect conf 2015 中提出的建议(以及她的存储库:https://github.com/juliemr/ng2-test-seed),我正在使用 Karma 和 Jasmine。它遵循要测试的示例服务:import { Router } from 'angular2/rout
2016-01-07
我有一个组件和一个 Pinia 存储,其中包含一个状态和一些操作。该代码在浏览器和 E2E(cypress)测试中运行良好,但在单元测试中失败。我正在使用 vue-testing-utils 和 vitest。单击按钮时,可以从单元测试中正常调用存储函数,但如果该函数位于已安装或主脚本中,则测试失败src/components/UsersComponent.vue<script setup>imp
2022-04-05
我的管道有问题。我知道我当前的 Karma 测试有问题,但我在本地运行测试和在 DevOps 管道上运行测试时遇到了不一致的问题karma.conf.ci.js// Karma configuration file, see link for more information// https://karma-runner.github.io/1.0/config/configuration-fil
2021-04-07
我使用 vue cli 创建了一个新项目,其规格如下:vue 3typescript无类语法vue-routerbabeleslint + standardjestcypress当我运行npm run test:unit时,出现以下错误TypeScript diagnostics (customize using `[jest-config].globals.ts-jest.diagnostics
2020-09-20
我正在开发一个 Angular 应用,并在单元测试中使用 Jasmine 和 Karma。在我的某个组件规范中,我开始收到错误:Uncaught RangeError:超出最大调用堆栈大小。我很难找到/理解此堆栈溢出的原因,并希望有一种结构化的方法来调试此错误。有问题的组件 (...component.spec.ts) 的代码如下:import {ComponentFixture,TestBed,
2019-11-24
我正在使用 Jasmine 对我的 Angular 应用进行单元测试,有时 Karma 窗口中会出现以下错误。我找不到它的来源,因为它在重新加载时大约发生 1/5 次。它发生在监视模式下。有什么线索吗?zone.js:202 Uncaught RangeError: Maximum call stack size exceededat RegExp.exec (<anonymous>)at Arr
2019-10-09
我正在使用 Jest 测试 React 组件。我正在尝试模拟来自其他依赖项的函数。依赖项中的函数应该返回一个数组,但它在控制台上显示未定义。下面的文件是 tsx 文件,当我单击按钮时,它应该调用依赖项函数来获取框架列表。ExitAppButton.tsx:import React, { useContext, useState } from 'react';import { TestContext
2022-11-20
我有一个具有简单 GET 方法的服务:export class MyService {constructor(private http: HttpClient) {}getUsers() {const path = 'https://gorest.co.in/public/v2/users'return this.http.get(path)}}接下来,我将其注入到一个组件中:export cla
2022-03-27
我正在尝试运行组件的单元测试。component.ts:async ngOnInit(): Promise<void> {await this.dataProviderService.getCurrencyCodesList().then(data => {this.currencyList = data;});this.currencyList.sort((a, b) => {return a.
2021-01-01
我试图在我的单元测试中模拟一个选择器,如下所示:describe('Device List Component', () => {let component: ListComponent;let fixture: ComponentFixture<ListComponent>;let deviceServiceMock: any;let mockStore: MockStore<any>;let
2020-09-21