Skip to content

Commit

Permalink
removed snapshot from cutadapt test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDMurray committed Mar 18, 2024
1 parent b14af48 commit 606f74b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 62 deletions.
9 changes: 8 additions & 1 deletion tests/modules/nf-core/cutadapt/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ nextflow_process {

then {
assert process.success
assert snapshot(process.out).match()
with(process.out) {
assert reads.size() == 1
assert reads[0].size() == 2
assert reads[0][0].size() == 2
assert reads[0][1].size() == 2
assert path(reads[0][1].get(0)).md5 == 'cd2ed3747e5e3280f12a227433c73cae'
assert path(reads[0][1].get(1)).md5 == '194a5403ffd5f9506f12bb035fd04448'
}
}

}
Expand Down
61 changes: 0 additions & 61 deletions tests/modules/nf-core/cutadapt/main.nf.test.snap

This file was deleted.

0 comments on commit 606f74b

Please sign in to comment.