jest

    0熱度

    1回答

    我試圖從elasticsearch 5.1中檢索建議者結果,但是目前我得到一個空的結果。我目前使用的是客戶端。我的代碼如下。 JestClientFactory factory = new JestClientFactory(); factory.setHttpClientConfig(new HttpClientConfig .Builder("localhost

    1熱度

    2回答

    如果提供的操作方法需要參數,我在使用酶的contains方法時遇到問題。 我在將redux動作傳遞給組件時遇到了這個問題,但我將在這裏使用簡化示例。 假設你有兩種方法: const logClick =() => console.log('button was clicked'); const logClickWithArg = (message) => console.log('button

    0熱度

    2回答

    我正試圖通過JEST運行批量請求,並希望一次一個追加我的數據(說「賬單」),然後一次執行所有操作,但是當我在10個賬單上運行以下代碼只是最後一張賬單正在執行,是否有人可以更正此代碼以執行所有10個賬單(通過在for循環之外執行,即使用批量請求)? for(JSONObject bill : bills) { bulkRequest = new Bulk.Builder()

    0熱度

    1回答

    如何排序elasticsearch結果讓我使用開玩笑練習elasticsearch 5.2有這樣的: @Override public List<Aptitude> findAllAptitudes() { SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder(); searchSourceBuil

    4熱度

    1回答

    我嘗試用Jest for React-Native測試Animated.View。當我將屬性visible設置爲true時,它應該將我的視圖從opacity 0設置爲opacity 1。 這是我的組件呈現: <Animated.View style={{ opacity: opacityValue, }} > <Text>{message}</Text>

    4熱度

    1回答

    我正在寫我的第一個React測試,並遇到我的beforeEach語句無法正常工作的問題。這是我的測試文件: import React from 'react'; import { shallow } from 'enzyme'; import Home from '../components/Home'; import IntroText from '../components/IntroT

    6熱度

    2回答

    我正在用create-react-app構建一個React應用程序。 運行eslint時出現以下錯誤: 8:3錯誤'document'未定義no-undef。 下面是.jsx文件和我的eslint配置。 我的應用程序運行時沒有錯誤,但是我在2個文件中得到了這個eslint錯誤。 index.jsx: import React from 'react'; import ReactDOM from

    0熱度

    2回答

    我在ElasticSearch數據庫中有一個人指數我得到通過這種方法,所有的人: public List<Person> findAll() { SearchResult result = null; SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder(); searchSourceBui

    0熱度

    1回答

    我的測試 import React from 'react'; import {shallow} from 'enzyme'; import topNav from '../components/topNav'; it('Navbar should existed',() => { const Navbar = shallow(<topNav />); expect(N

    1熱度

    1回答

    import React from 'react'; import CrudApi from '../api/CrudApi'; import nock from 'nock'; describe('CrudList Component',() => { it('should have users',() => { afterEach(() => {