You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
chore(protractor): rename docs e2e test suite with -docs suffix
Due to the need to create a non-docs set of E2E tests, these are being moved. The old grunt commands
will eventually be replaced with an alias which invokes both the simple E2E tests as well as the docs
E2E tests.
grunt.registerTask('test','Run unit, docs and e2e tests with Karma',['jshint','jscs','package','test:unit','test:promises-aplus','tests:docs','test:protractor']);
321
+
grunt.registerTask('test','Run unit, docs and e2e tests with Karma',['jshint','jscs','package','test:unit','test:promises-aplus','tests:docs','test:protractor-docs']);
322
322
grunt.registerTask('test:jqlite','Run the unit tests with Karma',['tests:jqlite']);
323
323
grunt.registerTask('test:jquery','Run the jQuery unit tests with Karma',['tests:jquery']);
324
324
grunt.registerTask('test:modules','Run the Karma module tests with Karma',['tests:modules']);
325
325
grunt.registerTask('test:docs','Run the doc-page tests with Karma',['package','tests:docs']);
326
326
grunt.registerTask('test:unit','Run unit, jQuery and Karma module tests with Karma',['tests:jqlite','tests:jquery','tests:modules']);
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']);
327
+
grunt.registerTask('test:protractor-docs','Run the end to end docs tests with Protractor and keep a test server running in the background',
grunt.registerTask('test:travis-protractor-docs','Run the end to end docs tests with Protractor for Travis CI builds',['connect:testserver','protractor-docs:travis']);
330
+
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']);
331
+
grunt.registerTask('test:docs-e2e','Alias for test:protractor',['test:protractor-docs']);
0 commit comments