Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit af086ee

Browse files
committed
Kill protractor-e2e configs
1 parent c69259e commit af086ee

9 files changed

+13
-128
lines changed

Gruntfile.js

+6-23
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ var files = require('./angularFiles').files;
44
var util = require('./lib/grunt/utils.js');
55
var versionInfo = require('./lib/versions/version-info');
66
var path = require('path');
7-
var e2e = require('./test/e2e/tools');
87

98
module.exports = function(grunt) {
109
//grunt plugins
@@ -51,7 +50,6 @@ module.exports = function(grunt) {
5150
return [
5251
util.conditionalCsp(),
5352
util.rewrite(),
54-
e2e.middleware(),
5553
connect.favicon('images/favicon.ico'),
5654
connect.static(base),
5755
connect.directory(base)
@@ -77,7 +75,6 @@ module.exports = function(grunt) {
7775

7876
next();
7977
},
80-
e2e.middleware(),
8178
util.conditionalCsp(),
8279
connect.favicon('images/favicon.ico'),
8380
connect.static(base)
@@ -104,20 +101,13 @@ module.exports = function(grunt) {
104101
},
105102

106103

107-
'protractor-docs': {
104+
protractor: {
108105
normal: 'protractor-conf.js',
109106
travis: 'protractor-travis-conf.js',
110107
jenkins: 'protractor-jenkins-conf.js'
111108
},
112109

113110

114-
protractor: {
115-
normal: 'protractor-e2e.conf.js',
116-
travis: 'protractor-e2e-travis.conf.js',
117-
jenkins: 'protractor-e2e-jenkins.conf.js'
118-
},
119-
120-
121111
clean: {
122112
build: ['build'],
123113
tmp: ['tmp']
@@ -328,23 +318,16 @@ module.exports = function(grunt) {
328318

329319

330320
//alias tasks
331-
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor-docs']);
321+
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']);
332322
grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
333323
grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
334324
grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['tests:modules']);
335325
grunt.registerTask('test:docs', 'Run the doc-page tests with Karma', ['package', 'tests:docs']);
336326
grunt.registerTask('test:unit', 'Run unit, jQuery and Karma module tests with Karma', ['tests:jqlite', 'tests:jquery', 'tests:modules']);
337-
grunt.registerTask('test:e2e', 'Run E2E tests with Protractor with a test server running in the background',
338-
['webdriver', 'connect:testserver', 'protractor:normal']);
339-
grunt.registerTask('test:travis-e2e', 'Run the E2E tests with protractor and keep a test server running in the background',
340-
['connect:testserver', 'protractor:travis']);
341-
grunt.registerTask('test:ci-e2e', 'Run the E2E tests with protractor and keep a test server running in the background',
342-
['webdriver', 'connect:testserver', 'protractor:jenkins']);
343-
grunt.registerTask('test:protractor-docs', 'Run the end to end docs tests with Protractor and keep a test server running in the background',
344-
['webdriver', 'connect:testserver', 'protractor-docs:normal']);
345-
grunt.registerTask('test:travis-protractor-docs', 'Run the end to end docs tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor-docs:travis']);
346-
grunt.registerTask('test:ci-protractor-docs', 'Run the end to end docs tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor-docs:jenkins']);
347-
grunt.registerTask('test:docs-e2e', 'Alias for test:protractor', ['test:protractor-docs']);
327+
grunt.registerTask('test:protractor', 'Run the end to end tests with Protractor and keep a test server running in the background', ['webdriver', 'connect:testserver', 'protractor:normal']);
328+
grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']);
329+
grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']);
330+
grunt.registerTask('test:e2e', 'Alias for test:protractor', ['test:protractor']);
348331
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']);
349332

350333
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);

jenkins_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mkdir -p test_out
2828
grunt test:unit --browsers $BROWSERS --reporters=dots,junit --no-colors --no-color
2929

3030
# END TO END TESTS #
31-
grunt test:ci-protractor-docs
31+
grunt test:ci-protractor
3232

3333
# DOCS APP TESTS #
3434
grunt test:docs --browsers $BROWSERS --reporters=dots,junit --no-colors --no-color

lib/grunt/plugins.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ module.exports = function(grunt) {
5757
util.updateWebdriver.call(util, this.async());
5858
});
5959

60-
grunt.registerMultiTask('protractor-docs', 'Run Protractor Docs integration tests', function() {
61-
util.startProtractor.call(util, this.data, this.async());
62-
});
63-
64-
grunt.registerMultiTask('protractor', 'Run Protractor E2E tests', function() {
60+
grunt.registerMultiTask('protractor', 'Run Protractor Docs integration tests', function() {
6561
util.startProtractor.call(util, this.data, this.async());
6662
});
6763

protractor-conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var config = require('./protractor-shared-conf').config;
44

55
config.specs = [
6+
'test/e2e/tests/**/*.js',
67
'build/docs/ptore2e/**/*.js',
78
'docs/app/e2e/**/*.scenario.js'
89
];

protractor-e2e-jenkins.conf.js

-40
This file was deleted.

protractor-e2e-travis.conf.js

-40
This file was deleted.

protractor-e2e.conf.js

-16
This file was deleted.

protractor-jenkins-conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ exports.config = {
44
allScriptsTimeout: 11000,
55

66
specs: [
7+
'test/e2e/tests/**/*.js',
78
'build/docs/ptore2e/**/*.js',
89
'docs/app/e2e/*.scenario.js'
910
],

scripts/travis/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ elif [ $JOB = "e2e" ]; then
1515
export USE_JQUERY=1
1616
fi
1717

18-
grunt test:travis-e2e
19-
2018
export TARGET_SPECS="build/docs/ptore2e/**/default_test.js"
2119
if [ $TEST_TARGET = "jquery" ]; then
2220
TARGET_SPECS="build/docs/ptore2e/**/jquery_test.js"
2321
fi
24-
grunt test:travis-protractor-docs --specs "$TARGET_SPECS"
22+
23+
export TARGET_SPECS="test/e2e/tests/**/*.js $TARGET_SPECS"
24+
grunt test:travis-protractor --specs "$TARGET_SPECS"
2525
else
2626
echo "Unknown job type. Please set JOB=unit or JOB=e2e-*."
2727
fi

0 commit comments

Comments
 (0)