1

Here's the background:

  • I've wrote my tests in protractor@visual studio and got it running successfully with the help of this guide;
  • Checked the project into TFS;

Now, my intention is to associate my protractor tests to microsoft case tests, then i intent to run against a environment (SCVMM).

I tried Coded Ui Test, but i found then a little bit slow.

Is there a way that i can get this done?

Thanks.

andrepm
  • 867
  • 4
  • 13
  • 31

1 Answers1

0

What I did was use Generic Tests to accomplish this.

Each Generic Test you create can represent a Protractor test. I just named them similarly. Then you can link the Generic Test to the MTM test. Simple as that.

I took it a step further and set the Generic Test up in such a way that it runs the Protractor test. This is really nice because Visual studio will recognize these tests in Test Explorer. So no more command prompt :)

Here's an example of one of mine:

enter image description here

alaney
  • 613
  • 5
  • 12