This commit updates the docs examples to Angular v11.0.1. In addition to updating the dependencies versions, it also updates the project's structure and config to more closely match what a new v11 CLI app would look like. See, also, the [diff][1] between a basic v10.1.3 CLI app and a v11.0.2 one. NOTE: I refrained from disabling the Selenium Promise Manager (as seen [here][2]) and switching all e2e tests to `async/await`, because that is a big change and should be done in a separate commit/PR. [1]: https://github.com/cexbrayat/angular-cli-diff/compare/10.1.3..11.0.2 [2]: https://github.com/cexbrayat/angular-cli-diff/compare/10.1.3...11.0.2#diff-dbd675d74087d57cd084d6dd6ae24ae2eeff2ff0122680e12916052f8a843a29 PR Close #39818
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Karma configuration file, see link for more information
 | 
						|
// https://karma-runner.github.io/1.0/config/configuration-file.html
 | 
						|
 | 
						|
module.exports = function (config) {
 | 
						|
  config.set({
 | 
						|
    basePath: '',
 | 
						|
    frameworks: ['jasmine', '@angular-devkit/build-angular'],
 | 
						|
    plugins: [
 | 
						|
      require('karma-jasmine'),
 | 
						|
      require('karma-chrome-launcher'),
 | 
						|
      require('karma-jasmine-html-reporter'),
 | 
						|
      require('karma-coverage'),
 | 
						|
      require('@angular-devkit/build-angular/plugins/karma')
 | 
						|
    ],
 | 
						|
    client: {
 | 
						|
      clearContext: false // leave Jasmine Spec Runner output visible in browser
 | 
						|
    },
 | 
						|
    jasmineHtmlReporter: {
 | 
						|
      suppressAll: true // removes the duplicated traces
 | 
						|
    },
 | 
						|
    coverageReporter: {
 | 
						|
      dir: require('path').join(__dirname, './coverage/angular.io-example'),
 | 
						|
      subdir: '.',
 | 
						|
      reporters: [
 | 
						|
        { type: 'html' },
 | 
						|
        { type: 'text-summary' }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    reporters: ['progress', 'kjhtml'],
 | 
						|
    port: 9876,
 | 
						|
    colors: true,
 | 
						|
    logLevel: config.LOG_INFO,
 | 
						|
    autoWatch: true,
 | 
						|
    browsers: ['Chrome'],
 | 
						|
    singleRun: false,
 | 
						|
    restartOnFileChange: true
 | 
						|
  });
 | 
						|
};
 |