difftreelog
ci fix js-packages paths
in: master
18 files changed
.github/workflows/collator-selection.ymldiffbeforeafterboth176176177 - name: Run tests177 - name: Run tests178 working-directory: js-packages/tests178 working-directory: js-packages/tests179 run: |179 run: |180 yarn install180 yarn install181 yarn add mochawesome181 yarn add mochawesome182 # Wanted by both wait_for_first_block182 # Wanted by both wait_for_first_block183 # export RPC_URL="${RELAY_SAPPHIRE_HTTP_URL:-${RELAY_OPAL_HTTP_URL:-${RELAY_QUARTZ_HTTP_URL:-${RELAY_UNIQUE_HTTP_URL:-}}}}"183 # export RPC_URL="${RELAY_SAPPHIRE_HTTP_URL:-${RELAY_OPAL_HTTP_URL:-${RELAY_QUARTZ_HTTP_URL:-${RELAY_UNIQUE_HTTP_URL:-}}}}"184 ../scripts/src/generate_types/wait_for_first_block.sh184 ../scripts/wait_for_first_block.sh185 echo "Ready to start tests"185 echo "Ready to start tests"186 NOW=$(date +%s) && yarn testCollators --reporter mochawesome --reporter-options reportFilename=test-collators-${NOW}186 NOW=$(date +%s) && yarn testCollators --reporter mochawesome --reporter-options reportFilename=test-collators-${NOW}187 env:187 env:188 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }} 188 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }} 189189.github/workflows/forkless-update-data.ymldiffbeforeafterboth146 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.latest.outputs.name }}'}})146 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.latest.outputs.name }}'}})147147148 - name: "Reconcile: runtime is upgraded"148 - name: "Reconcile: runtime is upgraded"149 working-directory: tests149 working-directory: js-packages/tests150 run: |150 run: |151 yarn151 yarn152 ./scripts/wait_for_first_block.sh152 ../scripts/wait_for_first_block.sh153 echo "Executing upgrade"153 echo "Executing upgrade"154 yarn ts-node --esm src/util/authorizeEnactUpgrade.ts ${{ steps.wasms.outputs.dir }}/${{ matrix.wasm_name }}-runtime/${{ matrix.wasm_name }}_runtime.compact.compressed.wasm154 yarn ts-node --esm util/authorizeEnactUpgrade.ts ${{ steps.wasms.outputs.dir }}/${{ matrix.wasm_name }}-runtime/${{ matrix.wasm_name }}_runtime.compact.compressed.wasm155 env:155 env:156 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}156 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}157157158 - name: Run Parallel tests after forkless upgrade158 - name: Run Parallel tests after forkless upgrade159 working-directory: tests159 working-directory: js-packages/tests160 run: |160 run: |161 ./scripts/wait_for_first_block.sh161 ../scripts/wait_for_first_block.sh162 echo "Ready to start tests"162 echo "Ready to start tests"163 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}163 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}164 env:164 env:165 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}165 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}166166167 - name: Run Sequential tests after forkless upgrade167 - name: Run Sequential tests after forkless upgrade168 if: success() || failure()168 if: success() || failure()169 working-directory: tests169 working-directory: js-packages/tests170 run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}170 run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}171 env:171 env:172 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}172 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth161 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.mainnet.outputs.name }}'}})161 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.mainnet.outputs.name }}'}})162162163 - name: "Reconcile: runtime is upgraded"163 - name: "Reconcile: runtime is upgraded"164 working-directory: tests164 working-directory: js-packages/tests165 run: |165 run: |166 yarn166 yarn167 ./scripts/wait_for_first_block.sh167 ../scripts/wait_for_first_block.sh168 echo "Executing upgrade"168 echo "Executing upgrade"169 yarn ts-node --esm src/util/authorizeEnactUpgrade.ts ${{ steps.wasms.outputs.dir }}/${{ matrix.wasm_name }}-runtime/${{ matrix.wasm_name }}_runtime.compact.compressed.wasm169 yarn ts-node --esm util/authorizeEnactUpgrade.ts ${{ steps.wasms.outputs.dir }}/${{ matrix.wasm_name }}-runtime/${{ matrix.wasm_name }}_runtime.compact.compressed.wasm170 env:170 env:171 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}171 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}172172173 - name: Run Parallel tests after forkless upgrade173 - name: Run Parallel tests after forkless upgrade174 working-directory: tests174 working-directory: js-packages/tests175 run: |175 run: |176 ./scripts/wait_for_first_block.sh176 ../scripts/wait_for_first_block.sh177 echo "Ready to start tests"177 echo "Ready to start tests"178 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}178 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}179 env:179 env:180 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}180 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}181181182 - name: Run Sequential tests after forkless upgrade182 - name: Run Sequential tests after forkless upgrade183 if: success() || failure()183 if: success() || failure()184 working-directory: tests184 working-directory: js-packages/tests185 run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}185 run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}186 env:186 env:187 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}187 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}.github/workflows/governance.ymldiffbeforeafterboth838384 - name: Run tests84 - name: Run tests85 working-directory: js-packages/tests85 working-directory: js-packages/tests86 run: |86 run: |87 yarn install87 yarn install88 yarn add mochawesome88 yarn add mochawesome89 ../scripts/src/generate_types/wait_for_first_block.sh89 ../scripts/wait_for_first_block.sh90 echo "Ready to start tests"90 echo "Ready to start tests"91 NOW=$(date +%s) && yarn testGovernance --reporter mochawesome --reporter-options reportFilename=test-${NOW}91 NOW=$(date +%s) && yarn testGovernance --reporter mochawesome --reporter-options reportFilename=test-${NOW}92 env:92 env:93 RPC_URL: http://127.0.0.1:9944/93 RPC_URL: http://127.0.0.1:9944/9494.github/workflows/make-bench.ymldiffbeforeafterboth43 time make bench43 time make bench444445 - name: Run node dev mode in background45 - name: Run node dev mode in background46 working-directory: ./47 run: |46 run: |48 ./target/release/unique-collator --dev &47 ./target/release/unique-collator --dev &494850 - name: RUN Calibrate49 - name: RUN Calibrate51 working-directory: ./tests50 working-directory: js-packages/scripts52 run: |51 run: |53 yarn install52 yarn54 yarn ts-node --esm src/calibrate.ts53 yarn ts-node --esm calibrate.ts55 yarn ts-node --esm src/calibrateApply.ts54 yarn ts-node --esm calibrateApply.ts56 55 57 - name: show git diff56 - name: show git diff58 run: |57 run: |.github/workflows/market-test.ymldiffbeforeafterboth119119120# Temporary disable node readyness check. Have to dig into the script logic.120# Temporary disable node readyness check. Have to dig into the script logic.121# - name: Wait for chain up and running121# - name: Wait for chain up and running122# working-directory: tests122# working-directory: js-packages/tests123# run: |123# run: |124# yarn install124# yarn install125# ./scripts/wait_for_first_block.sh125# ../scripts/wait_for_first_block.sh126# echo "Ready to start tests"126# echo "Ready to start tests"127# env:127# env:128# RPC_URL: http://127.0.0.1:9944/128# RPC_URL: http://127.0.0.1:9944/.github/workflows/node-only-update.ymldiffbeforeafterboth167 - name: Run Parallel tests before Node Parachain upgrade167 - name: Run Parallel tests before Node Parachain upgrade168 working-directory: ${{ matrix.mainnet_branch }}/tests168 working-directory: ${{ matrix.mainnet_branch }}/tests169 if: success()169 if: success()170 run: |170 run: |171 yarn171 yarn172 yarn add mochawesome172 yarn add mochawesome173 ./scripts/wait_for_first_block.sh173 # TODO: Update to new script structure after mainnet will have it174 ./scripts/wait_for_first_block.sh174 echo "Ready to start tests"175 echo "Ready to start tests"175 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}176 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}176 env:177 env:177 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}178 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}178179196197197 - name: Ensure network is alive198 - name: Ensure network is alive198 if: success()199 if: success()199 run: |200 run: |200 ./tests/scripts/wait_for_first_block.sh201 ./js-packages/scripts/wait_for_first_block.sh201 env:202 env:202 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}203 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}203204214 - name: Run Parallel tests after Node Parachain upgrade215 - name: Run Parallel tests after Node Parachain upgrade215 working-directory: ${{ matrix.mainnet_branch }}/tests216 working-directory: ${{ matrix.mainnet_branch }}/tests216 if: success() || failure() # run this step even if previous step failed217 if: success() || failure() # run this step even if previous step failed217 run: |218 run: |218 yarn install219 yarn install219 yarn add mochawesome220 yarn add mochawesome220 ./scripts/wait_for_first_block.sh221 # TODO: Update to new script structure after mainnet will have it222 ./scripts/wait_for_first_block.sh221 echo "Ready to start tests"223 echo "Ready to start tests"222 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}224 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}223 env:225 env:224 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}226 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}225227.github/workflows/polkadot-types.ymldiffbeforeafterboth74 # run: sudo apt install jq -y74 # run: sudo apt install jq -y757576 - name: Run generate_types_package script76 - name: Run generate_types_package script77 working-directory: tests77 working-directory: js-packages78 run: |78 run: |79 yarn install79 yarn install80 /bin/bash ./scripts/generate_types/wait_for_first_block.sh80 ./scripts/wait_for_first_block.sh81 git config --global user.name "Unique"81 git config --global user.name "Unique"82 git config --global user.email github-actions@usetech.com 82 git config --global user.email github-actions@usetech.com 83 /bin/bash ./scripts/generate_types/generate_types_package.sh --release ${{ matrix.usage }} --push83 ./scripts/generate_types/generate_types_package.sh --release ${{ matrix.usage }} --push84 env:84 env:85 RPC_URL: http://127.0.0.1:9944/85 RPC_URL: http://127.0.0.1:9944/8686.github/workflows/xcm.ymldiffbeforeafterboth327 retention-days: 2327 retention-days: 2328328329 - name: Yarn install329 - name: Yarn install330 working-directory: tests330 working-directory: js-packages/tests331 run: |331 run: |332 yarn install332 yarn install333 yarn add mochawesome333 yarn add mochawesome334334335 - name: Call HRMP initialization335 - name: Call HRMP initialization336 working-directory: tests336 working-directory: js-packages/tests337 run: |337 run: |338 yarn ts-node --esm src/util/createHrmp.ts ${{matrix.network}}338 yarn ts-node --esm util/createHrmp.ts ${{matrix.network}}339339340 - name: Run XCM tests340 - name: Run XCM tests341 working-directory: js-packages/tests341 working-directory: js-packages/tests342 run: |342 run: |343 # Wanted by both wait_for_first_block343 # Wanted by both wait_for_first_block344 export RPC_URL="${RELAY_OPAL_HTTP_URL:-${RELAY_QUARTZ_HTTP_URL:-${RELAY_UNIQUE_HTTP_URL:-}}}"344 export RPC_URL="${RELAY_OPAL_HTTP_URL:-${RELAY_QUARTZ_HTTP_URL:-${RELAY_UNIQUE_HTTP_URL:-}}}"345 ../scripts/src/generate_types/wait_for_first_block.sh345 ../scripts/wait_for_first_block.sh346 echo "Ready to start tests"346 echo "Ready to start tests"347 NOW=$(date +%s) && yarn ${{ matrix.runtest }} --reporter mochawesome --reporter-options reportFilename=test-${NOW}347 NOW=$(date +%s) && yarn ${{ matrix.runtest }} --reporter mochawesome --reporter-options reportFilename=test-${NOW}348348349 - name: XCM Test Report349 - name: XCM Test Report350 uses: phoenix-actions/test-reporting@v10350 uses: phoenix-actions/test-reporting@v10.github/workflows/yarn-dev.ymldiffbeforeafterboth636364 - name: Run tests64 - name: Run tests65 working-directory: js-packages/tests65 working-directory: js-packages/tests66 run: |66 run: |67 yarn install67 yarn install68 yarn add mochawesome68 yarn add mochawesome69 ../scripts/src/generate_types/wait_for_first_block.sh69 ../scripts/wait_for_first_block.sh70 echo "Ready to start tests"70 echo "Ready to start tests"71 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}71 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}72 env:72 env:73 RPC_URL: http://127.0.0.1:9944/73 RPC_URL: http://127.0.0.1:9944/7474888889 - name: Run benchmark mintFee tests89 - name: Run benchmark mintFee tests90 working-directory: js-packages/scripts90 working-directory: js-packages/scripts91 run: |91 run: |92 yarn install92 yarn install93 npx ts-node --esm ./src/benchmarks/mintFee/index.ts93 npx ts-node --esm ./benchmarks/mintFee/index.ts949495 - name: Run benchmark opsFee tests95 - name: Run benchmark opsFee tests96 working-directory: js-packages/scripts96 working-directory: js-packages/scripts97 run: |97 run: |98 yarn install98 yarn install99 npx ts-node --esm ./src/benchmarks/opsFee/index.ts99 npx ts-node --esm ./benchmarks/opsFee/index.ts100100101 - name: Stop running containers101 - name: Stop running containers102 if: always() # run this step always102 if: always() # run this step alwaysMakefilediffbeforeafterboth7 @echo " bench-unique"7 @echo " bench-unique"889NATIVE_FUNGIBLE_EVM_STUBS=./pallets/balances-adapter/src/stubs9NATIVE_FUNGIBLE_EVM_STUBS=./pallets/balances-adapter/src/stubs10NATIVE_FUNGIBLE_EVM_ABI=./js-packages/tests/src/eth/abi/nativeFungible.json10NATIVE_FUNGIBLE_EVM_ABI=./js-packages/tests/eth/abi/nativeFungible.json111112FUNGIBLE_EVM_STUBS=./pallets/fungible/src/stubs12FUNGIBLE_EVM_STUBS=./pallets/fungible/src/stubs13FUNGIBLE_EVM_ABI=./js-packages/tests/src/eth/abi/fungible.json13FUNGIBLE_EVM_ABI=./js-packages/tests/eth/abi/fungible.json141415NONFUNGIBLE_EVM_STUBS=./pallets/nonfungible/src/stubs15NONFUNGIBLE_EVM_STUBS=./pallets/nonfungible/src/stubs16NONFUNGIBLE_EVM_ABI=./js-packages/tests/src/eth/abi/nonFungible.json16NONFUNGIBLE_EVM_ABI=./js-packages/tests/eth/abi/nonFungible.json171718REFUNGIBLE_EVM_STUBS=./pallets/refungible/src/stubs18REFUNGIBLE_EVM_STUBS=./pallets/refungible/src/stubs19REFUNGIBLE_EVM_ABI=./js-packages/tests/src/eth/abi/reFungible.json19REFUNGIBLE_EVM_ABI=./js-packages/tests/eth/abi/reFungible.json20REFUNGIBLE_TOKEN_EVM_ABI=./js-packages/tests/src/eth/abi/reFungibleToken.json20REFUNGIBLE_TOKEN_EVM_ABI=./js-packages/tests/eth/abi/reFungibleToken.json212122CONTRACT_HELPERS_STUBS=./pallets/evm-contract-helpers/src/stubs/22CONTRACT_HELPERS_STUBS=./pallets/evm-contract-helpers/src/stubs/23CONTRACT_HELPERS_ABI=./js-packages/tests/src/eth/abi/contractHelpers.json23CONTRACT_HELPERS_ABI=./js-packages/tests/eth/abi/contractHelpers.json242425COLLECTION_HELPER_STUBS=./pallets/unique/src/eth/stubs/25COLLECTION_HELPER_STUBS=./pallets/unique/src/eth/stubs/26COLLECTION_HELPER_ABI=./js-packages/tests/src/eth/abi/collectionHelpers.json26COLLECTION_HELPER_ABI=./js-packages/tests/eth/abi/collectionHelpers.json272728TESTS_API=./js-packages/tests/src/eth/api/28TESTS_API=./js-packages/tests/eth/api/292930.PHONY: regenerate_solidity30.PHONY: regenerate_solidity31regenerate_solidity: UniqueFungible.sol UniqueNFT.sol UniqueRefungible.sol UniqueRefungibleToken.sol ContractHelpers.sol CollectionHelpers.sol31regenerate_solidity: UniqueFungible.sol UniqueNFT.sol UniqueRefungible.sol UniqueRefungibleToken.sol ContractHelpers.sol CollectionHelpers.soldoc/separate_rpc.mddiffbeforeafterboth77 * runtime/quartz/Cargo.toml77 * runtime/quartz/Cargo.toml78 * runtime/unique/Cargo.toml78 * runtime/unique/Cargo.toml7979807. Create tests/src/interfaces/ModuleName/definitions.ts and describe the necessary methods in it.807. Create js-packages/types/ModuleName/definitions.ts and describe the necessary methods in it.81 ```ts81 ```ts82 type RpcParam = {82 type RpcParam = {83 name: string;83 name: string;105 };105 };106 ```106 ```1071071088. Describe definitions from paragraph 7 in tests/src/interfaces/definitions.ts.1088. Describe definitions from paragraph 7 in js-packages/types/definitions.ts.109 ```ts109 ```ts110 export {default as ModuleName} from './module/definitions';110 export {default as ModuleName} from './module/definitions';111 ```111 ```1121121139. tests/src/substrate/substrate-api.ts1139. js-packages/tests/substrate/substrate-api.ts114 * Set the RPC interface in the `defaultApiOptions` function, add an entry in the `rpc` parameter114 * Set the RPC interface in the `defaultApiOptions` function, add an entry in the `rpc` parameter115 ```ts115 ```ts116 module: defs.module.rpc,116 module: defs.module.rpc,117 ```117 ```11811811910. tests/src/util/playgrounds/unique.dev.ts11910. js-packages/playgrounds/unique.dev.ts120 * Specify RPC interface in `connect` function, add entry in `rpc` parameter120 * Specify RPC interface in `connect` function, add entry in `rpc` parameter121 ```ts121 ```ts122 module: defs.module.rpc,122 module: defs.module.rpc,123 ```123 ```124js-packages/.dockerignorediffbeforeafterboth1node_modules/1node_modules/2Dockerfile-tests32js-packages/Dockerfile-testsdiffbeforeafterbothno changes
js-packages/scripts/benchmarks/mintFee/index.tsdiffbeforeafterboth141415export const CONTRACT_IMPORT: ContractImports[] = [15export const CONTRACT_IMPORT: ContractImports[] = [16 {16 {17 fsPath: `${dirname}/../../../../tests/eth/api/CollectionHelpers.sol`,17 fsPath: `${dirname}/../../../tests/eth/api/CollectionHelpers.sol`,18 solPath: 'eth/api/CollectionHelpers.sol',18 solPath: 'eth/api/CollectionHelpers.sol',19 },19 },20 {20 {21 fsPath: `${dirname}/../../../../tests/eth/api/ContractHelpers.sol`,21 fsPath: `${dirname}/../../../tests/eth/api/ContractHelpers.sol`,22 solPath: 'eth/api/ContractHelpers.sol',22 solPath: 'eth/api/ContractHelpers.sol',23 },23 },24 {24 {25 fsPath: `${dirname}/../../../../tests/eth/api/UniqueRefungibleToken.sol`,25 fsPath: `${dirname}/../../../tests/eth/api/UniqueRefungibleToken.sol`,26 solPath: 'eth/api/UniqueRefungibleToken.sol',26 solPath: 'eth/api/UniqueRefungibleToken.sol',27 },27 },28 {28 {29 fsPath: `${dirname}/../../../../tests/eth/api/UniqueRefungible.sol`,29 fsPath: `${dirname}/../../../tests/eth/api/UniqueRefungible.sol`,30 solPath: 'eth/api/UniqueRefungible.sol',30 solPath: 'eth/api/UniqueRefungible.sol',31 },31 },32 {32 {33 fsPath: `${dirname}/../../../../tests/eth/api/UniqueNFT.sol`,33 fsPath: `${dirname}/../../../tests/eth/api/UniqueNFT.sol`,34 solPath: 'eth/api/UniqueNFT.sol',34 solPath: 'eth/api/UniqueNFT.sol',35 },35 },36];36];js-packages/scripts/package.jsondiffbeforeafterboth14 "tslib": "^2.6.2"14 "tslib": "^2.6.2"15 },15 },16 "scripts": {16 "scripts": {17 "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",17 "benchMintingFee": "ts-node benchmarks/mintFee/benchmark.ts",18 "loadTransfer": "ts-node src/transfer.nload.ts",18 "loadTransfer": "ts-node transfer.nload.ts",19 "generateEnv": "ts-node --esm ./src/generateEnv.ts",19 "generateEnv": "ts-node --esm ./generateEnv.ts",20 "propose-upgrade": "ts-node --esm ./src/proposeupgrade.ts",20 "propose-upgrade": "ts-node --esm ./proposeupgrade.ts",21 "propose-fast-track": "ts-node --esm ./src/proposefasttrack.ts"21 "propose-fast-track": "ts-node --esm ./proposefasttrack.ts"22 }22 }23}23}2424js-packages/scripts/wait_for_first_block.shdiffbeforeafterbothno changes
js-packages/tests/package.jsondiffbeforeafterboth26 "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",26 "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",27 "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",27 "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",28 "test": "yarn _test './**/*.*test.ts'",28 "test": "yarn _test './**/*.*test.ts'",29 "testParallel": "yarn _testParallel './**/*.test.ts'",30 "testSequential": "yarn _test './**/*.seqtest.ts'",31 "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",32 "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",29 "load": "yarn _test './**/*.load.ts'"33 "load": "yarn _test './**/*.load.ts'"30 }34 }31}35}