build: re-enable disabled e2e tests (#27979)

Re-enables a few e2e tests which have been disabled a long time ago. Since these pass now, we should re-enable them.

PR Close #27979
This commit is contained in:
Paul Gschwendtner 2019-01-08 12:43:53 +01:00 committed by Andrew Kushnir
parent c7d1890aaa
commit 31fdff7121
2 changed files with 2 additions and 6 deletions

View File

@ -13,7 +13,7 @@ const Key = protractor.Key;
describe('key_events', function() {
const URL = 'all/playground/src/key_events/index.html?bundles=false';
const URL = 'all/playground/src/key_events/index.html';
afterEach(verifyNoBrowserErrors);
beforeEach(() => { browser.get(URL); });

View File

@ -14,11 +14,7 @@ exports.config = {
onPrepare: function() { beforeEach(function() { browser.ignoreSynchronization = false; }); },
allScriptsTimeout: 11000,
specs: ['dist/all/**/e2e_test/**/*_spec.js'],
exclude: [
'dist/all/@angular/examples/**',
'**/key_events/**', // can't tell why this is failing
'**/sourcemap/**' // fails only on travis
],
exclude: ['dist/all/@angular/examples/**'],
capabilities: {
'browserName': 'chrome',
// Enables concurrent testing. Currently runs four e2e files in parallel.