UNPKG

angular-ui-tree

Version:

An AngularJS UI component that can sort nested lists, provides drag & drop support and doesn't depend on jQuery

15 lines (13 loc) 351 B
'use strict'; module.exports = function (gulp, $) { gulp.task('protractor', function () { return gulp.src(['e2e/**/*.js']) .pipe($.protractor.protractor({ configFile: 'protractor.conf.js', args: ['--baseUrl', 'http://127.0.0.1:9000'] })) .on('error', function (error) { throw error; }); }); };