Batch Testing
Widget Connector | ||||||
---|---|---|---|---|---|---|
|
Video Transcript
Hello, this is Amir Shehata with the final LUTF quick tip.
Today, I'll show you how you can run an LUTF batch test manually. Let's dive into it. It won't take long.
You can run all the suites like this
Code Block |
---|
suites.run() |
You can also run a specific test suite like this:
Code Block |
---|
suites['samples'].run() |
Once a batch test finishes running. You can also run check all the suites like thisresults by
Code Block |
---|
suites.rundumpGlobalTestResults() |
That's it folks. It's been fun.
...