The directory contains code authored in a style that makes it transpilable to dart. As such, these are not idiomatic examples of Angular 2 usage. The main purpose of this directory is to enable experimentation with Angular within the angular/angular repository. Closes #4342 Closes #4639
		
			
				
	
	
		
			19 lines
		
	
	
		
			645 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			645 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var data = module.exports = require('./protractor-shared.js');
 | |
| var config = data.config;
 | |
| 
 | |
| config.baseUrl = 'http://localhost:8002/';
 | |
| 
 | |
| config.exclude.push(
 | |
|   'dist/js/cjs/playground/e2e_test/sourcemap/sourcemap_spec.js',
 | |
|   'dist/js/cjs/playground/e2e_test/http/http_spec.js',
 | |
|   'dist/js/cjs/playground/e2e_test/jsonp/jsonp_spec.js',
 | |
|   // TODO: remove this line when largetable dart has been added
 | |
|   'dist/js/cjs/benchmarks_external/e2e_test/largetable_perf.js',
 | |
|   'dist/js/cjs/benchmarks_external/e2e_test/polymer_tree_perf.js',
 | |
|   'dist/js/cjs/benchmarks_external/e2e_test/react_tree_perf.js'
 | |
| 
 | |
| );
 | |
| 
 | |
| data.createBenchpressRunner({ lang: 'dart' });
 | |
| 
 |