I have a test which contains steps that I'll want to reuse in multiple files.
I'm thinking I could create a file called common.js
, list all the functions in there and just call as and when I need.
Is this a recommended approach?
The only issue I feel is having a super long file of common methods and if i seperate then I'd need to use lots of require
statements.
The simplest would be to do what you have hinted to make a
commonSpec.js
file and use it anywhere byimportTest()
which would be something like this :commonSpec.js
commonSpecUsed.js
The above approach is best and simple when they share the same specs and assert the same values. But when the assertions are different for e.g
Then you might want to make your
commonSpec.js
file more dynamic by enabling it to accept parameters. This would be entirely based on your test requirements. Can be more helpful if you could please share some code snippet.Hope this helps.