can we emulate print mode (media query print) for unit testing?

橙三吉。 提交于 2019-12-02 11:31:18

问题


can we emulate print mode (media query print) for unit testing? (Ract, enzyme, jest) i try:

window.matchMedia('print')

but it does not work for me, style media print not applied;


回答1:


I use iframe for printing and added some param to url for that. We can test printing using thit param:

window.location.hash = '?printMode=true'; // my variant

after that run component and lets try to write tests.



来源:https://stackoverflow.com/questions/47219643/can-we-emulate-print-mode-media-query-print-for-unit-testing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!