This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RHEL/CentOS 7 users | |
yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm | |
yum install xorg-x11-server-Xvfb | |
// Ubuntu | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
sudo apt-get update | |
sudo apt-get install -y google-chrome-unstable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function (config) { | |
config.set({ | |
// ... | |
'browsers': ['PhantomJSCustom'], | |
'customLaunchers': { | |
'PhantomJSCustom': { | |
'base': 'PhantomJS', | |
'options': { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Dev\Git\gulp-angular-protractor\examples\example-02>npm test | |
> [email protected] test C:\Dev\Git\gulp-angular-protractor\examples\example-02 | |
> npm run gulp protractor | |
> [email protected] gulp C:\Dev\Git\gulp-angular-protractor\examples\example-02 | |
> node node_modules/gulp/bin/gulp.js "protractor" | |
[21:07:00] Using gulpfile C:\Dev\Git\gulp-angular-protractor\examples\example-02\gulpfile.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Dev\Git\gulp-angular-protractor\examples\example-02>npm test | |
> [email protected] test C:\Dev\Git\gulp-angular-protractor\examples\example-02 | |
> npm run gulp protractor | |
> [email protected] gulp C:\Dev\Git\gulp-angular-protractor\examples\example-02 | |
> node node_modules/gulp/bin/gulp.js "protractor" | |
[21:01:24] Using gulpfile C:\Dev\Git\gulp-angular-protractor\examples\example-02\gulpfile.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import groovy.json.JsonSlurper | |
import jenkins.* | |
import jenkins.model.* | |
import hudson.* | |
import hudson.model.* | |
def build = Thread.currentThread().executable | |
def inputFile = new File(build.workspace.toString() + "/package.json") | |
def InputJSON = new JsonSlurper().parseText(inputFile.text) |