Skip to content

Commit

Permalink
build: re-enable disabled e2e tests (#27979)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
devversion authored and AndrewKushnir committed Jan 9, 2019
1 parent c7d1890 commit 31fdff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/playground/e2e_test/key_events/key_events_spec.ts
Expand Up @@ -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); });
Expand Down
6 changes: 1 addition & 5 deletions protractor-e2e.conf.js
Expand Up @@ -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.
Expand Down

0 comments on commit 31fdff7

Please sign in to comment.