• Robert Knight's avatar
    Modify a mocking idiom that doesn't work with ES modules · 426d2670
    Robert Knight authored
    We have an idiom in many tests where we import the "default export" from
    a module and then access the `$imports` property on that
    function/class/object in order to mock or unmock imports. For example:
    
    ```
    const Widget = require('../widget');
    
    beforeEach(() => {
      Widget.$imports.$mock(...);
    });
    
    afterEach(() => {
      Widget.$imports.$restore();
    });
    ```
    
    This won't work when the module under test is converted to an ES module
    because the `$imports` object will become a separate export from the
    module rather than a property of the default export.
    426d2670
Name
Last commit
Last update
..
hooks Loading commit data...
test Loading commit data...
annotation-action-bar.js Loading commit data...
annotation-body.js Loading commit data...
annotation-document-info.js Loading commit data...
annotation-header.js Loading commit data...
annotation-license.js Loading commit data...
annotation-publish-control.js Loading commit data...
annotation-quote.js Loading commit data...
annotation-share-control.js Loading commit data...
annotation-share-info.js Loading commit data...
annotation-thread.js Loading commit data...
annotation-user.js Loading commit data...
annotation-viewer-content.js Loading commit data...
annotation.js Loading commit data...
button.js Loading commit data...
excerpt.js Loading commit data...
focused-mode-header.js Loading commit data...
group-list-item.js Loading commit data...
group-list-section.js Loading commit data...
group-list.js Loading commit data...
help-panel.js Loading commit data...
hypothesis-app.js Loading commit data...
logged-out-message.js Loading commit data...
markdown-editor.js Loading commit data...
markdown-view.js Loading commit data...
menu-item.js Loading commit data...
menu-section.js Loading commit data...
menu.js Loading commit data...
moderation-banner.js Loading commit data...
new-note-btn.js Loading commit data...
search-input.js Loading commit data...
search-status-bar.js Loading commit data...
selection-tabs.js Loading commit data...
share-annotations-panel.js Loading commit data...
share-links.js Loading commit data...
sidebar-content-error.js Loading commit data...
sidebar-content.js Loading commit data...
sidebar-panel.js Loading commit data...
slider.js Loading commit data...
sort-menu.js Loading commit data...
spinner.js Loading commit data...
stream-content.js Loading commit data...
stream-search-input.js Loading commit data...
svg-icon.js Loading commit data...
tag-editor.js Loading commit data...
tag-list.js Loading commit data...
thread-list.js Loading commit data...
timestamp.js Loading commit data...
top-bar.js Loading commit data...
tutorial.js Loading commit data...
user-menu.js Loading commit data...
version-info.js Loading commit data...