Replies: 1 comment 5 replies
-
This is a little abstract for me, or at least at this point in the morning. Could you give a more concrete example? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi.
I'm trying to test some
subjectFunction
. I've created a helper which constructs a test case lifecycleAnd on a set of different
caseInputData
I would like to run a similar set of isolated assertions (I.e. each assertion should fail/succeed individually)So is there any better design based approach to organize such a flow?
I'was thinking of using
beforeEach
but it doesn't resolvecaseInputData
injection.Is it possible e.g. to compose macro chains somehow sharing the context
is it possible to fork the same
pureTestCase
output contextand still run
assertionA
,assertionB
,assertionC
individually?Or is there any other better solution in my case?
Thx!
Beta Was this translation helpful? Give feedback.
All reactions