Skip to content

Commit

Permalink
Remove unused selenium require
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Jun 15, 2015
1 parent 91ae013 commit 412d7a5
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions lib/grunt/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var path = require('path');
var util = require('./utils.js');
var semver = require('semver');
var shell = require('shelljs');
var remote = require('selenium-webdriver/remote');

var ngdoc = require('../../node_modules/grunt-ngdocs/src/ngdoc.js');
var reader = require('../../node_modules/grunt-ngdocs/src/reader.js');
Expand Down Expand Up @@ -276,27 +275,6 @@ module.exports = function(grunt) {
done();
});

// grunt.registerTask('selenium:start', function() {
// var done = this.async();

// // Get the config from the config file
// var configFile = path.resolve(process.cwd(), grunt.config('protractor.options.configFile'));
// var config = require(configFile);

// var server = new remote.SeleniumServer(config.seleniumServerJar, {
// args: config.seleniumArgs,
// port: config.seleniumPort
// });

// // console.log('server', server.start);

// server.start().then(function(url) {
// grunt.log.writeln('Selenium standalone server started at ' + url);

// done();
// });
// });

// Create the bower.json file
grunt.registerTask('update-bower-json', function () {
var currentTag = semver.clean( util.getCurrentTag() );
Expand Down

0 comments on commit 412d7a5

Please sign in to comment.