From 0e94c83216f1e09541926a154b346503886ccad2 Mon Sep 17 00:00:00 2001 From: seppinho Date: Fri, 26 Aug 2022 15:44:11 +0200 Subject: [PATCH] Add execution command --- docs/testcases/nextflow_pipeline.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/testcases/nextflow_pipeline.md b/docs/testcases/nextflow_pipeline.md index 8e4d342d..9696eb45 100644 --- a/docs/testcases/nextflow_pipeline.md +++ b/docs/testcases/nextflow_pipeline.md @@ -70,7 +70,7 @@ workflow { ``` ### nf-test script -Create a new file and name it `say_hello.nf.test`. +Create a new file and name it `pipeline.nf.test`. ```Groovy nextflow_pipeline { @@ -96,3 +96,9 @@ nextflow_pipeline { } ``` +### Execute test +``` +curl -fsSL https://code.askimed.com/install/nf-test | bash +./nf-test init +./nf-test test pipeline.nf.test --debug +```