From f76ad760dfc1f28e1c16c2918e0cfe51da6d7ec2 Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Wed, 25 Oct 2023 13:23:40 +0200 Subject: [PATCH] fix(#125): fix: cucumber-node + cargo cucumber --- .cargo/config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index e008f1822..1f6c2d4ba 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,9 +1,11 @@ [alias] sanity-gdev = "test -p duniter-live-tests --test sanity_gdev -- --nocapture" tu = "test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests" +# `ti` and `cucumber` are synonyms ti = "test -p duniter-end2end-tests --test cucumber_tests --" +cucumber = "test -p duniter-end2end-tests --test cucumber_tests --" ta = "test --workspace --exclude duniter-live-tests" tb = "test --features runtime-benchmarks -p" rbp = "run --release --features runtime-benchmarks -- benchmark pallet --chain=dev --steps=50 --repeat=20 --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=. --pallet" xtask = "run --package xtask --" -cucumber-node = "test -- --chain=gdev_dev --execution=Native --sealing=manual --force-authoring --rpc-cors=all --tmp --ws-port 9944 --alice" +cucumber-node = "run -- --chain=gdev_dev --execution=Native --sealing=manual --force-authoring --rpc-cors=all --tmp --ws-port 9944 --alice" -- GitLab