The source map does not currently work with the transformer pipeline.
It will be re-enabled after TypeScript 2.4 is made the min version.
To revert to the former compiler, use the `disableTransformerPipeline` in
tsconfig.json:
```
{
  "angularCompilerOptions": {
    "disableTransformerPipeline": true
  }
}
```
		
	
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			312 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			312 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { browser, element, by } from 'protractor';
 | 
						|
 | 
						|
describe('i18n E2E Tests', function () {
 | 
						|
  it('remove i18n attributes', function () {
 | 
						|
    browser.get('');
 | 
						|
    const div = element(by.css('div'));
 | 
						|
    expect(div.getAttribute('title')).not.toBe(null);
 | 
						|
    expect(div.getAttribute('i18n')).toBe(null);
 | 
						|
  });
 | 
						|
});
 |