diff --git a/integration-tests/start-sandbox.sh b/integration-tests/start-sandbox.sh deleted file mode 100755 index be1952da81..0000000000 --- a/integration-tests/start-sandbox.sh +++ /dev/null @@ -1,26 +0,0 @@ -image="oxheadalpha/flextesa:20230607" -alice=`docker run --rm $image flextesa key alice` -bob=`docker run --rm $image flextesa key bob` -charlie=`docker run --rm $image flextesa key charlie` -donald=`docker run --rm $image flextesa key donald` - - -docker run \ - --name flextesa_sandbox \ - -p 20000:20000 \ - --rm \ - --detach \ - $image \ - flextesa mini-net \ - --root /tmp/mini-box --size 4 \ - --set-history-mode N000:archive \ - --number-of-b 4 \ - --balance-of-bootstrap-accounts tez:100_000_000 \ - --time-b 1 \ - --add-bootstrap-account="${alice}@2_000_000_000_000" \ - --add-bootstrap-account="${bob}@2_000_000_000_000" \ - --add-bootstrap-account="${charlie}@2_000_000_000_000" \ - --add-bootstrap-account="${donald}@2_000_000_000_000" \ - --no-daemons-for=donald \ - --until-level 200_000_000 \ - --protocol-kind Nairobi \ No newline at end of file diff --git a/package.json b/package.json index b06b65ed49..546d2e16e5 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "example": "cd example && npm run example", "build-docs": "typedoc --tsconfig ./tsconfig.typedoc.json", "gh-pages": "gh-pages", + "integration-tests": "npm -w integration-tests run test:originate-known-contracts && npm -w integration-tests run test:nairobinet-secret-key -- --testPathIgnorePatterns ledger-signer-failing-tests.spec.ts ledger-signer.spec.ts contract-estimation-tests.spec.ts rpc-get-protocol-constants.spec.ts", "version-stamp": "lerna run version-stamp" }, "jest": {