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:
parent
c7d1890aaa
commit
31fdff7121
|
@ -13,7 +13,7 @@ const Key = protractor.Key;
|
||||||
|
|
||||||
describe('key_events', function() {
|
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);
|
afterEach(verifyNoBrowserErrors);
|
||||||
beforeEach(() => { browser.get(URL); });
|
beforeEach(() => { browser.get(URL); });
|
||||||
|
|
|
@ -14,11 +14,7 @@ exports.config = {
|
||||||
onPrepare: function() { beforeEach(function() { browser.ignoreSynchronization = false; }); },
|
onPrepare: function() { beforeEach(function() { browser.ignoreSynchronization = false; }); },
|
||||||
allScriptsTimeout: 11000,
|
allScriptsTimeout: 11000,
|
||||||
specs: ['dist/all/**/e2e_test/**/*_spec.js'],
|
specs: ['dist/all/**/e2e_test/**/*_spec.js'],
|
||||||
exclude: [
|
exclude: ['dist/all/@angular/examples/**'],
|
||||||
'dist/all/@angular/examples/**',
|
|
||||||
'**/key_events/**', // can't tell why this is failing
|
|
||||||
'**/sourcemap/**' // fails only on travis
|
|
||||||
],
|
|
||||||
capabilities: {
|
capabilities: {
|
||||||
'browserName': 'chrome',
|
'browserName': 'chrome',
|
||||||
// Enables concurrent testing. Currently runs four e2e files in parallel.
|
// Enables concurrent testing. Currently runs four e2e files in parallel.
|
||||||
|
|
Loading…
Reference in New Issue