我需要测试一张传单地图(可以下载图块、CSS 等),但我无法用 Cypress 模拟图块下载。当我的 Cypress 测试打开地图时,它会尝试下载类似https://tile.openstreetmap.se/hydda/base/6/31/22.png、https://basemaps.cartocdn.com/light_nolabels/6/31/22.png或https://server.
您好,我正在测试一个组件,该组件中有两个主题的 CartService。我正在为该服务创建一个 spyObject。现在,当 Angular 尝试订阅这些主题时,它们尚未定义。尝试返回某个主题或其他内容的值,但目前没有任何效果。仍然未定义。这是服务和主题。export class CartService {totalQuantity: Subject<number> = new Subject<n
正在运行命令:ng test --codeCoverage=true --progress=false --watch=false错误消息:TypeError: Cannot read property 'substring' of undefined组件的 NgOnInitprivate serv: ExtratosMensaisService,ngOnInit(): void {const s
我想测试localstorage中的值。这是我用来存储这些值的包:https://www.npmjs.com/package/ngstorage这是我的代码:var module = angular.module(‘myModule', ['ngStorage']);module.controller(‘MyController’, ['$scope', '$localStorage', func
2016-06-06
我正在使用 Enzyme/Jest 为容器上的一个函数编写测试,该函数通过复选框组件的 onChange 触发。我试图模拟“更改”,但是不知何故,“更改”并未触发要调用的 onChange 函数。不确定这里发生了什么……我尝试将模拟更改为“单击”,删除目标对象,但仍然不起作用。容器export class Data extends React.PureComponent {constructor(
2017-07-19
我正在尝试编写一个模拟慢速 API 的 Cypress 测试,因此在阅读了一些文档后,我想到了这个:before(function() {cy.server({delay: 5000});});beforeEach(() => {cy.route({method: "GET",url: "**/api/**"});cy.visit("http://localhost:9000");});这应该会为
我开始在 Angular 中测试组件和服务。我观看了 pluralsight 上的课程,并尝试遵循以下想法:https://codecraft.tv/courses/angular/unit-testing/mocks-and-spies/但是,我在测试组件方法方面遇到了问题。不幸的是,我找不到解决方案,所以决定向您寻求帮助。我的服务:@Injectable()export class MySer
2019-01-09
由于使用了一个翻译库调用'react-simple-i18n',我在模拟我的一个 React 组件时卡住了。在我的 React 组件中,我需要从这个库导入一个函数来使用它,如下所示:import { useI18n } from 'react-simple-i18n/lib/'const MyComponent = ({ data }) => {const { t } = useI18n()ret