在jest
应用中实施electron-react
快照测试时遇到错误:
TypeError:无法与'undefined'或'null'匹配。
当React
组件包含electron
导航元素(例如shell, Menu, MenuItem
)时,我找不到任何方法让测试正常工作。
我已尝试将shell
作为道具传递,与 Home.spec.j 中的注释代码一样,但没有变化。
Home.js
import React, { Component } from 'react';
import { remote } from 'electron';
const { shell } = remote;
export default class Home extends Component {
openLink() {
shell.openExternal('https://www.facebook.com')
}
render() {
return (
<div>
<button onClick={() => this.openLink()}>
Open External
</button>
</div>
)
}
}
Home.spec.js
import React from 'react';
import renderer from 'react-test-renderer';
import Home from '../../app/components/Home';
// import { remote } from 'electron'
// const { shell } = remote;
describe('Counter component', () => {
it('should render snapshot', () => {
const component = renderer.create(
<Home />
//<Home shell={shell} />
)
const tree = component.toJSON()
expect(tree).toMatchSnapshot()
})
});
答案 0 :(得分:1)
为了保持应用程序的分离,我建议你不要混淆Electron和React部件。根据您的应用,可能有两种解决方案:
openExternal
const {shell} = require('electron')
const webview = document.querySelector('webview')
webview.addEventListener('new-window', (e) => {
const protocol = require('url').parse(e.url).protocol
if (protocol === 'http:' || protocol === 'https:') {
shell.openExternal(e.url)
}
})