Skip to content

Commit

Permalink
test: Add basic pipeline test
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Mar 8, 2024
1 parent ad56046 commit db348b8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/main.nf.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
nextflow_pipeline {

name "Test pipeline"
script "../main.nf"
tag "PIPELINE"
config "conf/test.config"

test("Run with profile test") {

when {
params {
outdir = "$outputDir"
}
}

then {
assert workflow.success

// TODO
// assertAll(
// )
}
}
}

0 comments on commit db348b8

Please sign in to comment.