mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	* UI update headless chrome flags to fix ember/chrome crash in test * UI update references from test-oss to test:oss * UI removed disable-gpu flag from headless Chrome * UI and also remove the comment
		
			
				
	
	
		
			34 lines
		
	
	
		
			781 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			781 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const config = {
 | 
						|
  framework: 'qunit',
 | 
						|
  test_page: 'tests/index.html?hidepassed',
 | 
						|
  tap_quiet_logs: true,
 | 
						|
  disable_watching: true,
 | 
						|
  launch_in_ci: ['Chrome'],
 | 
						|
  browser_args: {
 | 
						|
    Chrome: {
 | 
						|
      ci: [
 | 
						|
        // --no-sandbox is needed when running Chrome inside a container
 | 
						|
        process.env.CI ? '--no-sandbox' : null,
 | 
						|
        '--headless',
 | 
						|
        '--disable-software-rasterizer',
 | 
						|
        '--mute-audio',
 | 
						|
        '--remote-debugging-port=0',
 | 
						|
        '--window-size=1440,900',
 | 
						|
      ].filter(Boolean),
 | 
						|
    },
 | 
						|
  },
 | 
						|
  proxies: {
 | 
						|
    '/v1': {
 | 
						|
      target: 'http://localhost:9200',
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
if (process.env.CI) {
 | 
						|
  config.reporter = 'xunit';
 | 
						|
  config.report_file = 'test-results/qunit/results.xml';
 | 
						|
  config.xunit_intermediate_output = true;
 | 
						|
}
 | 
						|
 | 
						|
module.exports = config;
 |