From c9b757bef33319ace6faf4860712760126647691 Mon Sep 17 00:00:00 2001 From: DmytroNazarenko Date: Wed, 3 Aug 2022 15:45:26 +0300 Subject: [PATCH 1/2] Test commit --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2a8f5cc..df30fd6 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ venv/ .eslintcache .nyc_output coverage + From 12114a791f95318005a704d134c296af03c3267c Mon Sep 17 00:00:00 2001 From: DmytroNazarenko Date: Wed, 3 Aug 2022 18:39:16 +0300 Subject: [PATCH 2/2] Update clean schain, fix tests --- scripts/clean_remote_schain.sh | 2 +- test/index.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/clean_remote_schain.sh b/scripts/clean_remote_schain.sh index 75793d3..1cff28c 100644 --- a/scripts/clean_remote_schain.sh +++ b/scripts/clean_remote_schain.sh @@ -1,4 +1,4 @@ #!/bin/bash ssh -o StrictHostKeyChecking=no "$USER"@"$ENDPOINT" "docker rm -f schain_$PORT" -ssh -o StrictHostKeyChecking=no "$USER"@"$ENDPOINT" "rm -r schains/$PORT" \ No newline at end of file +ssh -o StrictHostKeyChecking=no "$USER"@"$ENDPOINT" "sudo rm -r schains/$PORT" \ No newline at end of file diff --git a/test/index.test.js b/test/index.test.js index f97c3ff..01ed7b9 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -451,7 +451,7 @@ describe('Test FilestorageClient', function () { }); }); - describe.only('test grantAllocatorRole', function () { + describe('test grantAllocatorRole', function () { describe('Positive tests', function () { it('should grant allocator role for account', async function () { let owner = testHelper.getAddress(process.env.SCHAIN_OWNER_PK);