This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Post parser | |
// COMPONENT OR STRING | |
//SAX? | |
var builder = ICAL.Builder({ /* options */ }); | |
builder.onitem = function() { | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
requireApp('system/js/identity.js'); | |
requireApp('system/test/unit/mock_chrome_event.js'); | |
requireApp('system/test/unit/mock_popup_manager.js'); | |
// ensure its defined as a global so mocha will not complain about us | |
// leaking new global variables during the test | |
if (!window.PopupManager) { | |
window.PopupManager = true; | |
} |