54 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2014 Signal Messenger, LLC
 | 
						|
// SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
/*
 | 
						|
 * global helpers for tests
 | 
						|
 */
 | 
						|
 | 
						|
mocha.setup('bdd');
 | 
						|
mocha.setup({ timeout: 10000 });
 | 
						|
 | 
						|
window.Events = {
 | 
						|
  getThemeSetting: () => 'light',
 | 
						|
  addDarkOverlay: () => undefined,
 | 
						|
};
 | 
						|
 | 
						|
/* Delete the database before running any tests */
 | 
						|
before(async () => {
 | 
						|
  await window.testUtilities.initialize();
 | 
						|
  await window.storage.fetch();
 | 
						|
});
 | 
						|
 | 
						|
window.testUtilities.prepareTests();
 | 
						|
delete window.testUtilities.prepareTests;
 | 
						|
window.textsecure.storage.protocol = window.getSignalProtocolStore();
 | 
						|
 | 
						|
!(function () {
 | 
						|
  class Reporter extends Mocha.reporters.HTML {
 | 
						|
    constructor(runner, options) {
 | 
						|
      super(runner, options);
 | 
						|
 | 
						|
      runner.on('pass', test => window.testUtilities.onTestEvent({
 | 
						|
        type: 'pass',
 | 
						|
        title: test.titlePath(),
 | 
						|
        duration: test.duration,
 | 
						|
      }));
 | 
						|
      runner.on('fail', (test, error) => window.testUtilities.onTestEvent({
 | 
						|
        type: 'fail',
 | 
						|
        title: test.titlePath(),
 | 
						|
        error: error?.stack || String(error),
 | 
						|
      }));
 | 
						|
 | 
						|
      runner.on('end', () => window.testUtilities.onTestEvent({ type: 'end' }));
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  mocha.reporter(Reporter);
 | 
						|
 | 
						|
  mocha.setup(window.testUtilities.setup);
 | 
						|
 | 
						|
  mocha.run();
 | 
						|
})();
 | 
						|
 | 
						|
window.getPreferredSystemLocales = () => ['en'];
 | 
						|
window.getLocaleOverride = () => null;
 |