This file contains 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
$> chromedriver --url-base=wd/hub --verbose | |
Starting ChromeDriver (v2.9.248315) on port 9515 |
This file contains 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
$> adb start-server | |
$> adb devices | |
List of devices attached | |
12n45n54b device |
This file contains 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
$ git clone https://github.com/juanpicado/javascript-unit-testing-samples | |
$ npm install |
This file contains 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
var wd = require('wd'); | |
require('colors'); | |
var chai = require("chai"); | |
var chaiAsPromised = require("chai-as-promised"); | |
chai.use(chaiAsPromised); | |
chai.should(); | |
var browser = wd.remote('localhost', 9515); | |
browser.init({ | |
browserName: "chrome", | |
chromeOptions: { |
This file contains 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
module.exports = function(config) { | |
config.set({ | |
basePath: './', | |
autoWatch: true, | |
frameworks: ['mocha'], | |
files: [ | |
'../src/js/*.js', | |
'./test/*.js' | |
], | |
browsers: ['PhantomJS', 'Chrome', 'Firefox'], |
This file contains 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
WAR File | |
/atlassian-jira-5.0-rc3-source/jira-project/jira-distribution/jira-webapp-dist/target/jira-webapp-dist-5.0-rc3.war |
This file contains 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
[INFO] Streams Plugin ........................................ SUCCESS [1:07.548s] | |
[INFO] JIRA Activity Stream Inline Actions Plugin ............ SUCCESS [0.205s] | |
[INFO] Atlassian UI Plugin ................................... SUCCESS [20.222s] | |
[INFO] Atlassian JIRA - Code - Screenshot Applet ............. SUCCESS [4.374s] | |
[INFO] Embedded Gadgets Plugin ............................... SUCCESS [1.014s] | |
[INFO] Atlassian JIRA - Plugins - OAuth Service Provider SPI . SUCCESS [2.963s] | |
[INFO] Atlassian JIRA - Plugins - OAuth Consumer SPI ......... SUCCESS [3.199s] | |
[INFO] Atlassian JIRA - Plugins - Gadgets Plugin ............. SUCCESS [3.564s] | |
[INFO] Atlassian JIRA - Plugins - SAL Plugin ................. SUCCESS [1.672s] | |
[INFO] Atlassian JIRA - Plugins - Project Config Plugin ...... SUCCESS [2.220s] |
This file contains 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
/jira.x.5.0.rc3/functest-plugin/pom.xml | |
org.apache.ant | |
ant | |
1.8.2 |
This file contains 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
/jira.x.5.0.rc3/functest-plugin/src/main/java/com/atlassian/functest/rest/RestJUnitResultFormatter.java | |
[INFO] Compiling 28 source files to /Users/juan/bin/JIRA/atlassian-jira-5.0-rc3-source/functest-plugin/target/classes | |
[INFO] ------------------------------------------------------------------------ | |
[ERROR] BUILD FAILURE | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Compilation failure | |
/Users/juan/bin/JIRA/atlassian-jira-5.0-rc3-source/functest-plugin/src/main/java/com/atlassian/functest/rest/RestJUnitResultFormatter.java:[5,27] package org.apache.tools.ant does not exist |
This file contains 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
mvn deploy:deploy-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.2.0 -Dpackaging=jar -Dfile=/path/to/file -Durl= | |
[url] -DrepositoryId=[id] | |
Path to dependency: | |
1) org.leberrigaud.maven.plugins:database-maven-plugin:maven-plugin:0.9 | |
2) com.oracle:ojdbc6:jar:11.2.0.2.0 | |
---------- | |
1 required artifact is missing. |