I have a project with 2 functional Suites, the structure is like this:
- /tests
--- /sign
------ sign.js
--- /buy
------ buy.js
--- intern.js
- /node_modules
- ....
On my intern.js I have this
//...
functionalSuites: [ 'tests/sign/sign', 'tests/buy/buy'],
//...
And to run the test intern-runner config=tests/intern
So far so good, 2/2 tests passed.
I would like to know if it's possible to pass some arguments to execute only a part of the functionalSuites
ex:
intern-runner config=tests/intern --sign
And somehow it would run only the functionalSuite tests/sign/sign
And if I pass intern-runner config=tests/intern --all it would run all functionalSuite tests.
Thank you
