This integration test was created from a vanilla CLI generated project with the following modifications: * remove `PercentPipe` usage from `app.component.html` - these are not yet supported by ivy * changed `ng test` in `package.json` to only to `ng build` - right now we can only confirm that the app will build * hard-code `ngDevMode` in `index.html` - the CLI does not yet set this correctly PR Close #26403
		
			
				
	
	
		
			33 lines
		
	
	
		
			815 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			815 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Protractor configuration file, see link for more information
 | 
						|
// https://github.com/angular/protractor/blob/master/lib/config.ts
 | 
						|
 | 
						|
const { SpecReporter } = require('jasmine-spec-reporter');
 | 
						|
 | 
						|
exports.config = {
 | 
						|
  allScriptsTimeout: 11000,
 | 
						|
  specs: [
 | 
						|
    './e2e/**/*.e2e-spec.ts'
 | 
						|
  ],
 | 
						|
  capabilities: {
 | 
						|
    browserName: 'chrome',
 | 
						|
    chromeOptions: {
 | 
						|
      binary: process.env.CHROME_BIN,
 | 
						|
      args: ['--no-sandbox']
 | 
						|
    }
 | 
						|
  },
 | 
						|
  directConnect: true,
 | 
						|
  baseUrl: 'http://localhost:4200/',
 | 
						|
  framework: 'jasmine',
 | 
						|
  jasmineNodeOpts: {
 | 
						|
    showColors: true,
 | 
						|
    defaultTimeoutInterval: 30000,
 | 
						|
    print: function() {}
 | 
						|
  },
 | 
						|
  onPrepare() {
 | 
						|
    require('ts-node').register({
 | 
						|
      project: 'e2e/tsconfig.e2e.json'
 | 
						|
    });
 | 
						|
    jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
 | 
						|
  }
 | 
						|
};
 |