spy

    0熱度

    1回答

    我試圖用jest和酶測試我的React組件。我有一個使用react-skylight組件的表單組件。我在表單提交上觸發.show()函數,並在服務器響應成功時觸發。 我的測試是目前這樣的: import MyForm from './MyForm'; import Popup from 'react-skylight'; describe('<MyForm />',() => {

    0熱度

    1回答

    UI自動化SPY生成腳本,用於鼠標單擊事件並且未檢測到任何鍵盤和滾動事件。

    0熱度

    1回答

    我想寫的退出方法單元測試: logout(): Observable<boolean> { ... location.assign('/Login'); ... return Observable.of(false); } 當因緣讓行location.assign('/Login');測試結果頁面移開並寫入「未找到」。 我試圖用spyOn: spyOn

    0熱度

    1回答

    我使用貓鼬和我有登錄功能,試圖找到用戶,然後驗證他的密碼(我不會在這裏描述此功能的所有邏輯,但只有主要部分向您展示我的問題) 。 function login(req, res) { ... User.findOne(...) .then((user) => { user.validPassword(...); ... });

    1熱度

    1回答

    工作,我有一個代理JAR(JAR-具有依賴性)與倍美力爲 public static void premain(String args, Instrumentation instrumentation) { log.info("Starting Swing Testing Tools"); log.info("Adding global listener using agent

    0熱度

    1回答

    我有一個3類方法的服務類,Service類也使用了一些@Autowired註解。 3種方法中,我想模擬兩種方法,但使用真正的方法爲第三種方法。 問題是: 如果我使用@Autowired與@Spy,所有三個實際的方法實現被調用。 如果我僅使用@Spy,則調用實型方法時返回空指針,因爲沒有初始化Autowired對象。

    3熱度

    1回答

    我有以下2個組件和一個由兩者共享的單個服務。我需要單元測試它們,但我無法弄清楚如何測試服務對以下組件的依賴性。 //a.component.ts import { Component, Input } from '@angular/core'; import { Http, Response } from '@angular/http'; import { SharedService } f

    0熱度

    1回答

    我正在測試一個指令的角度和代碼覆蓋的目的我需要進入該函數傳遞給第二個參數的刪除功能: Myservice.remove(param1, function() { //test contents of this.. }); 然而Myservice被嘲笑,與remove功能是間諜: myservice = { remove: jasmine.createSpy('Myserv

    0熱度

    1回答

    我有一個單元測試,我解決不了問題。 這裏是我的測試: fit('should call the alert service in case something went wrong getting the list of files', async(() => { spyOn(this.component.alert, 'error'); this.component.onIn

    0熱度

    1回答

    我有一個組件Demo,其標籤依賴於redux-form狀態中字段的當前值。我正在使用formValueSelector從窗體狀態獲取當前值「param」字段。它工作正常。但是,在運行npm測試時,選擇器函數總是返回undefined。我怎麼嘲笑它? 請讓我知道,如果我這樣做是錯誤的。 我有一個像 class Sample extends React.Component { render() {