From 568bf455b5b4e7d1d835ccd8c45ac1418df51514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chavant?= Date: Fri, 25 May 2018 15:33:57 +0200 Subject: [PATCH 1/4] Test against lisk core 1.0.0-beta.7 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a7119c67f..5c6b5d398 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -117,7 +117,7 @@ node('lisk-nano') { cp -r ~/lisk-docker/examples/development $WORKSPACE/$BRANCH_NAME cd $WORKSPACE/$BRANCH_NAME cp /home/lisk/blockchain_explorer.db.gz ./blockchain.db.gz - LISK_VERSION=1.0.0-beta.7.1 make coldstart + LISK_VERSION=1.0.0-beta.7 make coldstart LISK_PORT=$( docker-compose port lisk 4000 |cut -d ":" -f 2 ) cd - From 2c7e01e33beb0f546ebec8e84fe686cbc983fd03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chavant?= Date: Tue, 19 Jun 2018 09:24:30 +0200 Subject: [PATCH 2/4] Test against lisk core 1.0.0-beta.9.2 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5c6b5d398..a3a2a58cb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -114,10 +114,10 @@ node('lisk-nano') { export DISPLAY=:1$N Xvfb :1$N -ac -screen 0 1280x1024x24 & - cp -r ~/lisk-docker/examples/development $WORKSPACE/$BRANCH_NAME + cp -r ~/liskhq/lisk-docker/examples/development $WORKSPACE/$BRANCH_NAME cd $WORKSPACE/$BRANCH_NAME cp /home/lisk/blockchain_explorer.db.gz ./blockchain.db.gz - LISK_VERSION=1.0.0-beta.7 make coldstart + LISK_VERSION=1.0.0-beta.9.2 make coldstart LISK_PORT=$( docker-compose port lisk 4000 |cut -d ":" -f 2 ) cd - From 3b7c496fafe3a18cd976a00d8be78a6fe657f814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chavant?= Date: Tue, 17 Jul 2018 11:02:11 +0200 Subject: [PATCH 3/4] Test against lisk core 1.0.0-rc.1 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a3a2a58cb..2f973867e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -117,7 +117,7 @@ node('lisk-nano') { cp -r ~/liskhq/lisk-docker/examples/development $WORKSPACE/$BRANCH_NAME cd $WORKSPACE/$BRANCH_NAME cp /home/lisk/blockchain_explorer.db.gz ./blockchain.db.gz - LISK_VERSION=1.0.0-beta.9.2 make coldstart + LISK_VERSION=1.0.0-rc.1 make coldstart LISK_PORT=$( docker-compose port lisk 4000 |cut -d ":" -f 2 ) cd - From 9e16f851f1272861bc735b4a89ffed8ecca44eb9 Mon Sep 17 00:00:00 2001 From: Vit Stanislav Date: Wed, 18 Jul 2018 12:09:10 +0200 Subject: [PATCH 4/4] Fix send-to e2e test --- test/e2e/transactions.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/transactions.feature b/test/e2e/transactions.feature index 39d018028..6e6bd8f24 100644 --- a/test/e2e/transactions.feature +++ b/test/e2e/transactions.feature @@ -13,7 +13,7 @@ Feature: Transactions tab And I click "from-to" element on table row no. 1 And I fill in "1" to "amount" field And I click "submit button" - Then I should see alert dialog with title "Success" and text "Your transaction of 1 LSK to 14706379298538803272L was accepted and will be processed in a few seconds." + Then I should see alert dialog with title "Success" and text "Your transaction of 1 LSK to 537318935439898807L was accepted and will be processed in a few seconds." @integration @pending