上一页 1 ··· 199 200 201 202 203 204 205 206 207 ··· 494 下一页
摘要: While you’re writing your tests it can be helpful to see what the DOM looks like. You can do this with React Testing Library’s debug function which wi 阅读全文
posted @ 2020-04-30 17:50 Zhentiw 阅读(193) 评论(0) 推荐(0)
摘要: Component: import React from 'react' function FavoriteNumber({ min = 1, max = 9 }) { const [number, setNumber] = React.useState(0) const [numberEntere 阅读全文
posted @ 2020-04-30 17:47 Zhentiw 阅读(188) 评论(0) 推荐(0)
摘要: We can use 'jest.spyOn', similr to 'spyOn' in Jasmine. jest.spyOn(utils, 'getWinner') We get 'getWinner' as a method. Jest has mockImplementation: // 阅读全文
posted @ 2020-04-30 15:01 Zhentiw 阅读(220) 评论(0) 推荐(0)
摘要: import { SET_STATUS, FETCH_FULFILLED, FETCH_FAILED, RESET, } from '../actions/beerActions' import lensProp from 'ramda/es/lensProp' import set from 'r 阅读全文
posted @ 2020-04-30 02:00 Zhentiw 阅读(151) 评论(0) 推荐(0)
摘要: Epic: import { ofType } from 'redux-observable' import { of, concat, merge, fromEvent, race, forkJoin } from 'rxjs' const buildAPI = (apiBase, perPage 阅读全文
posted @ 2020-04-30 01:57 Zhentiw 阅读(407) 评论(0) 推荐(0)
摘要: Let's say we are using 'React.lazy()' to lazy load some Router: const Home = React.lazy(() => import('./screens/home')) const User = React.lazy(() => 阅读全文
posted @ 2020-04-30 00:27 Zhentiw 阅读(347) 评论(0) 推荐(0)
摘要: Our <Query /> component is a render prop based component that the <User /> component uses. But because it doesn't render anything, we can actually jus 阅读全文
posted @ 2020-04-30 00:15 Zhentiw 阅读(228) 评论(0) 推荐(0)
摘要: When you smart component need to handle server request, it would be good to make sure it won't send multi same request to the backend. For example a s 阅读全文
posted @ 2020-04-29 21:46 Zhentiw 阅读(414) 评论(0) 推荐(0)
摘要: in angular.json: "configurations": { "production": { "index": { "input": "src/index.prod.html", "output": "index.html" }, "fileReplacements": [ { "rep 阅读全文
posted @ 2020-04-29 19:26 Zhentiw 阅读(223) 评论(0) 推荐(0)
摘要: subscribeOn() { // Changes source execution // only used once of(1).pipe( subscribeOn(async) ) .subscribe({ next: x => console.log(x), complete: () => 阅读全文
posted @ 2020-04-28 03:00 Zhentiw 阅读(195) 评论(0) 推荐(0)
上一页 1 ··· 199 200 201 202 203 204 205 206 207 ··· 494 下一页