latex-ub/services/web/test/frontend/features/chat/components/stubs.js
2025-05-05 12:24:05 +00:00

14 lines
256 B
JavaScript

import sinon from 'sinon'
export function stubMathJax() {
window.MathJax = {
Hub: {
Queue: sinon.stub(),
config: { tex2jax: { inlineMath: [['$', '$']] } },
},
}
}
export function tearDownMathJaxStubs() {
delete window.MathJax
}