forked from mirrors/gecko-dev
		
	Migrated `testing/modules/Sinon.sys.mjs` to an ES module. `testing` should now be 100% ESM 🎉 Differential Revision: https://phabricator.services.mozilla.com/D173643
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
ChromeUtils.defineModuleGetter(
 | 
						|
  this,
 | 
						|
  "pktApi",
 | 
						|
  "chrome://pocket/content/pktApi.jsm"
 | 
						|
);
 | 
						|
XPCOMUtils.defineLazyScriptGetter(
 | 
						|
  this,
 | 
						|
  "pktUI",
 | 
						|
  "chrome://pocket/content/pktUI.js"
 | 
						|
);
 | 
						|
 | 
						|
const { sinon } = ChromeUtils.importESModule(
 | 
						|
  "resource://testing-common/Sinon.sys.mjs"
 | 
						|
);
 |